Skip to content

Commit

Permalink
fix: null로 jpa 조회 시 에러 발생 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
nuyh99 committed Jan 8, 2024
1 parent 3739f86 commit 02a1461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/example/busan/room/RoomService.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private String getCurrentMemberEmail(final Authentication authentication) {
return authentication.email();
}

return null;
return "unLoggedIn";
}

private List<Reservation> getReservations(final LocalDate date) {
Expand Down

0 comments on commit 02a1461

Please sign in to comment.