박권수

fix. 소셜로그인(네이버) : 휴대폰 번호 '-' 없애기

...@@ -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 }
......