Skip to content

Commit 6e408e2

Browse files
jintak0401ThangHuuVu
andauthoredDec 1, 2022
fix(provider): modify response.name to response.nickname (Naver) (#5915)
fix(provider): modify response.name to response.nickname (Naver Provider) Co-authored-by: Thang Vu <hi@thvu.dev>
1 parent f277989 commit 6e408e2

File tree

1 file changed

+1
-1
lines changed
  • packages/next-auth/src/providers

1 file changed

+1
-1
lines changed
 

‎packages/next-auth/src/providers/naver.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function Naver<P extends NaverProfile>(
3131
profile(profile) {
3232
return {
3333
id: profile.response.id,
34-
name: profile.response.name,
34+
name: profile.response.nickname,
3535
email: profile.response.email,
3636
image: profile.response.profile_image,
3737
}

0 commit comments

Comments
 (0)
Please sign in to comment.