[WAR] added tokens images

This commit is contained in:
Oleg Agafonov 2019-04-23 23:32:09 +04:00
parent 0ef003a4a7
commit c6d32bd33d
16 changed files with 68 additions and 10 deletions

View file

@ -61,7 +61,7 @@ public enum UserManager {
public Optional<User> getUser(UUID userId) {
if (!users.containsKey(userId)) {
logger.warn(String.format("User with id %s could not be found", userId), new Throwable()); // TODO: remove after session freezes fixed
//logger.warn(String.format("User with id %s could not be found", userId), new Throwable()); // TODO: remove after session freezes fixed
return Optional.empty();
} else {
return Optional.of(users.get(userId));