[chore:] added "Postfach" to address creation
This commit is contained in:
@@ -129,7 +129,7 @@ public static class AddressCreator
|
|||||||
address_line_count++;
|
address_line_count++;
|
||||||
if (!string.IsNullOrWhiteSpace(address.postfach))
|
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++;
|
address_line_count++;
|
||||||
}
|
}
|
||||||
else if (!string.IsNullOrWhiteSpace(address.strasse.Trim()))
|
else if (!string.IsNullOrWhiteSpace(address.strasse.Trim()))
|
||||||
@@ -180,7 +180,7 @@ public static class AddressCreator
|
|||||||
}
|
}
|
||||||
else if (!string.IsNullOrWhiteSpace(address.postfach.Trim()))
|
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++;
|
address_line_count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user