Skip to content
Snippets Groups Projects

Änderungen von Dataport

Merged Jan Zickermann requested to merge develop into main
2 files
+ 63
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -102,7 +102,12 @@ public class ServiceKontoFactory {
}
int getPostfachAddressType(Map<String, Object> restResponseName) {
return getMailboxType(restResponseName);
try {
return getMailboxType(restResponseName);
} catch (RuntimeException e) {
LOG.error("Error while getting mailbox type from rest response name", e);
return POSTFACH_ADDRESS_DEFAULT;
}
}
private Integer getMailboxType(Map<String, Object> restResponseName) {
Loading