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);
|
UUID uuid = NoSession.decryptUUID(encryptedUUID);
|
||||||
if (NoSessionSphere.sessions.containsKey(uuid)) {
|
if (NoSessionSphere.sessions.containsKey(uuid)) {
|
||||||
NoSessionSphere.pruneSingle(uuid);
|
NoSessionSphere.pruneSingle(uuid);
|
||||||
return NoSessionSphere.sessions.get(uuid).getNoUser();
|
try {
|
||||||
|
return NoSessionSphere.sessions.get(uuid).getNoUser();
|
||||||
|
} catch (NullPointerException e) {
|
||||||
|
throw new NoSessionExpiredException();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
throw new NoSessionExpiredException();
|
throw new NoSessionExpiredException();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user