Catch nullpointerexception on NoCore.getUser, convert into
SessionExpired
This commit is contained in:
@@ -119,7 +119,11 @@ public final class NoSessionSphere {
|
||||
UUID uuid = NoSession.decryptUUID(encryptedUUID);
|
||||
if (NoSessionSphere.sessions.containsKey(uuid)) {
|
||||
NoSessionSphere.pruneSingle(uuid);
|
||||
try {
|
||||
return NoSessionSphere.sessions.get(uuid).getNoUser();
|
||||
} catch (NullPointerException e) {
|
||||
throw new NoSessionExpiredException();
|
||||
}
|
||||
}
|
||||
throw new NoSessionExpiredException();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user