We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3fef06 commit 3a9c560Copy full SHA for 3a9c560
1 file changed
src/main/java/com/patina/codebloom/api/duel/DuelController.java
@@ -87,7 +87,7 @@ public ResponseEntity<ApiResponder<Empty>> createParty(final HttpServletRequest
87
88
AuthenticationObject authenticationObject = protector.validateSession(request);
89
User user = authenticationObject.getUser();
90
- String playerId = authenticationObject.getUser().getId();
+ String playerId = user.getId();
91
92
LobbyPlayer existingLobbyPlayer = lobbyPlayerRepository.findLobbyPlayerByPlayerId(playerId);
93
if (existingLobbyPlayer != null) {
0 commit comments