[chore:] added "Postfach" to address creation

This commit is contained in:
Elias Fierke
2025-12-21 11:25:48 +01:00
parent b670ba11fa
commit 63c1559110

View File

@@ -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++;
}