mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-06 15:44:49 +08:00
Fix incorrect not found error when a player was not found
This commit is contained in:
parent
6e78e9e7ad
commit
3857822233
@ -105,7 +105,7 @@ public class PlayerPageHandler implements PageHandler {
|
||||
infoSystem.generateAndCachePlayerPage(uuid);
|
||||
response = ResponseCache.loadResponse(PageId.PLAYER.of(uuid));
|
||||
}
|
||||
return response != null ? response : responseFactory.serverNotFound404();
|
||||
return response != null ? response : responseFactory.playerNotFound404();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user