From acaf0856ed6e7f0feeeb41fc3520060bd9528b9d Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Mon, 8 Jun 2026 08:52:46 +0200 Subject: [PATCH] [chore:] filter by germany for running-sheet creation --- Tasks/PdfBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tasks/PdfBuilder.cs b/Tasks/PdfBuilder.cs index 31017bf..ab7ef45 100644 --- a/Tasks/PdfBuilder.cs +++ b/Tasks/PdfBuilder.cs @@ -604,7 +604,7 @@ public class PdfBuilder List> sorted_list = list.KasPersons .Where(x => !string.IsNullOrEmpty(x?.used_plz) && - x.used_plz.Length >= stpoint) + x.used_plz.Length >= stpoint && x.IsGermany()) .OrderBy(x => x.used_plz) .GroupBy(x => x.used_plz.Substring(0, stpoint)) .ToList();