From 63c1559110050ed0d55ac247572eb544c23a9ab3 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Sun, 21 Dec 2025 11:25:48 +0100 Subject: [PATCH] [chore:] added "Postfach" to address creation --- Tasks/AddressCreation.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tasks/AddressCreation.cs b/Tasks/AddressCreation.cs index 84e6846..ed90c19 100644 --- a/Tasks/AddressCreation.cs +++ b/Tasks/AddressCreation.cs @@ -129,7 +129,7 @@ public static class AddressCreator address_line_count++; if (!string.IsNullOrWhiteSpace(address.postfach)) { - string_address = address.postfach.Trim() + "\n" + string_address; + string_address = "Postfach " + address.postfach.Trim() + "\n" + string_address; address_line_count++; } else if (!string.IsNullOrWhiteSpace(address.strasse.Trim())) @@ -180,7 +180,7 @@ public static class AddressCreator } else if (!string.IsNullOrWhiteSpace(address.postfach.Trim())) { - string_address = address.postfach.Trim() + "\n" + string_address; + string_address = "Postfach " + address.postfach.Trim() + "\n" + string_address; address_line_count++; }