Skip to content

Commit

Permalink
fix: profileFileName NPE 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
정대현 committed Mar 16, 2023
1 parent db46bcd commit 8352a3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data class User(
val birthDay: LocalDate,
val grade: Int,
val classNum: Int,
val profileFileName: String,
val profileFileName: String?,
val password: String,
val accountId: String,
val num: Int
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data class UserResponse(
val birthDay: LocalDate,
val grade: Int,
val classNum: Int,
val profileFileName: String,
val profileFileName: String?,
val password: String,
val accountId: String,
val num: Int
Expand Down

0 comments on commit 8352a3b

Please sign in to comment.