From: Roland Häder Date: Fri, 23 Jun 2017 22:32:53 +0000 (+0200) Subject: Please cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d35f11ad3c214dba39390cbcbdf981b277311097;p=pizzaservice-core.git Please cherry-pick: - the user's locale must be set at all times, else the delivering method (onMessage()) will fail with an NPE because the locale is really required there to choose localized templates. Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java b/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java index 359223c..232eff7 100644 --- a/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java +++ b/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java @@ -491,6 +491,9 @@ public abstract class BasePizzaDatabaseBean extends BaseDatabaseBean { } else if (user.getUserContact().getContactPersonalTitle() == null) { // Throw NPE again throw new NullPointerException("user.userContact.contactPersonalTitle is null"); //NOI18N + } else if (user.getUserLocale() == null) { + // Throw NPE again + throw new NullPointerException("user.userLocale is null"); //NOI18N } // Prepare mail wrapper