You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (StringUtils.isBlank(domain) && !StringUtils.isBlank(configurationDomain)) {
232
+
if (StringUtils.isNotBlank(configurationDomain)) {
233
233
logger.debug("Defaulting reset link's domain to the [{}] configuration value: [{}].", UserPasswordResetDomainURL.key(), UserPasswordResetDomainURL.value());
234
-
domain =configurationDomain;
234
+
returnconfigurationDomain;
235
235
}
236
236
237
-
if (StringUtils.isBlank(domain)) {
238
-
logger.debug("Using the first IP address in the [{}] configuration for the reset password email domain because the [{}] configuration is not defined.", ManagementServerAddresses.key(), UserPasswordResetDomainURL.key());
logger.debug("Using the first IP address in the [{}] configuration for the reset password email domain because the [{}] configuration is not defined.", ManagementServerAddresses.key(), UserPasswordResetDomainURL.key());
0 commit comments