Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -309,7 +309,7 @@ exports.socialRegister = async ctx => { | ... | @@ -309,7 +309,7 @@ exports.socialRegister = async ctx => { |
309 | return { | 309 | return { |
310 | userId : email, | 310 | userId : email, |
311 | userNm : name, | 311 | userNm : name, |
312 | - contact : mobile, | 312 | + contact : mobile ? mobile.split('-').join('') : `${email}_등록되지않은 번호`, |
313 | birth : `${birthyear}-${birthday}`, | 313 | birth : `${birthyear}-${birthday}`, |
314 | }; | 314 | }; |
315 | } | 315 | } | ... | ... |
-
Please register or login to post a comment