Skip to content

Commit

Permalink
Fix: 네이버 로그인 attribute 이름 재설정 (#185)
Browse files Browse the repository at this point in the history
#184 - fix: 네이버 attribute 이름이 name 으로 되어있었던 것을 nickname 으로 수정 (#185)
  • Loading branch information
morenow98 authored Feb 22, 2024
1 parent 5008271 commit 30d3291
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public String getEmail() {
}

public String getName() {
return (String) this.attributes.get("name");
return (String) this.attributes.get("nickname");
}
}

0 comments on commit 30d3291

Please sign in to comment.