From d35f11ad3c214dba39390cbcbdf981b277311097 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 24 Jun 2017 00:32:53 +0200 Subject: [PATCH] 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. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../pizzaaplication/database/BasePizzaDatabaseBean.java | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.39.5