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=90d5ee2e92d600a0e7831dde2587f04f7215eb9d;p=jfinancials-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/jfinancials/database/BaseFinancialsDatabaseBean.java b/src/org/mxchange/jfinancials/database/BaseFinancialsDatabaseBean.java index 58180e3..54fd899 100644 --- a/src/org/mxchange/jfinancials/database/BaseFinancialsDatabaseBean.java +++ b/src/org/mxchange/jfinancials/database/BaseFinancialsDatabaseBean.java @@ -508,6 +508,9 @@ public abstract class BaseFinancialsDatabaseBean 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