This commit is contained in:
_Bastler 2021-10-06 11:16:39 +02:00
parent 46e642be51
commit 4bff439291
1 changed files with 1 additions and 2 deletions

View File

@ -64,7 +64,6 @@ public class BaseController {
return localUserManager.getByAuth(SecurityContextHolder.getContext().getAuthentication());
}
/**
* Gets the gravity.
*
@ -74,7 +73,7 @@ public class BaseController {
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
if (auth != null && auth.isAuthenticated()) {
LocalUser localUser = localUserManager.getByAuth(auth);
if (localUser.getSettings().containsKey("gravity")) {
if (localUser.getSettings() != null && localUser.getSettings().containsKey("gravity")) {
try {
return Double.parseDouble(localUser.getSettings().get("gravity"));
} catch (Exception e) {