From 22514715c1f67c1a1b2bba41bedc91359f7a90f8 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 2 Sep 2024 23:43:52 +0200 Subject: [PATCH] DeliveryService: Small text fix --- Elwig/Services/DeliveryService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Elwig/Services/DeliveryService.cs b/Elwig/Services/DeliveryService.cs index fe2f494..7750e89 100644 --- a/Elwig/Services/DeliveryService.cs +++ b/Elwig/Services/DeliveryService.cs @@ -389,11 +389,11 @@ namespace Elwig.Services { if (filterOeLt > 0) prd = prd.And(p => p.Kmw * (4.54 + 0.022 * p.Kmw) < filterOeLt); if (filterWeightGt > 0 && filterWeightLt > 0) { - filterNames.Insert(0, $"{filterWeightGt:N0}–{filterWeightLt:N0} kg"); + filterNames.Add($"{filterWeightGt:N0}–{filterWeightLt:N0} kg"); } else if (filterWeightGt > 0) { - filterNames.Insert(0, $"ab {filterWeightGt:N0} kg"); + filterNames.Add($"ab {filterWeightGt:N0} kg"); } else if (filterWeightLt > 0) { - filterNames.Insert(0, $"unter {filterWeightLt:N0} kg"); + filterNames.Add($"bis {filterWeightLt:N0} kg"); } if (filterYearGt > 0 && filterYearLt > 0) { filterNames.Insert(0, $"{filterYearGt}–{filterYearLt - 1}");