Skip to content

Commit 3a9c560

Browse files
committed
nits
1 parent d3fef06 commit 3a9c560

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/patina/codebloom/api/duel/DuelController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public ResponseEntity<ApiResponder<Empty>> createParty(final HttpServletRequest
8787

8888
AuthenticationObject authenticationObject = protector.validateSession(request);
8989
User user = authenticationObject.getUser();
90-
String playerId = authenticationObject.getUser().getId();
90+
String playerId = user.getId();
9191

9292
LobbyPlayer existingLobbyPlayer = lobbyPlayerRepository.findLobbyPlayerByPlayerId(playerId);
9393
if (existingLobbyPlayer != null) {

0 commit comments

Comments
 (0)