박권수

fix. error

...@@ -100,13 +100,13 @@ exports.doctorRegister = async ctx => { ...@@ -100,13 +100,13 @@ exports.doctorRegister = async ctx => {
100 } 100 }
101 101
102 const existDoctorInfo = await DoctorInfo.findByDoctorId(userId); 102 const existDoctorInfo = await DoctorInfo.findByDoctorId(userId);
103 - if(existDoctorInfo.useYn === 'W') { 103 + if(existDoctorInfo && existDoctorInfo.useYn === 'W') {
104 ctx.status = 401; 104 ctx.status = 401;
105 ctx.body = { 105 ctx.body = {
106 error : '가입 승인 대기중인 회원입니다.', 106 error : '가입 승인 대기중인 회원입니다.',
107 }; 107 };
108 return; 108 return;
109 - } else if(existDoctorInfo.useYn === 'N') { 109 + } else if(existDoctorInfo && existDoctorInfo.useYn === 'N') {
110 ctx.status = 401; 110 ctx.status = 401;
111 ctx.body = { 111 ctx.body = {
112 error : '가입이 거절된 회원입니다.', 112 error : '가입이 거절된 회원입니다.',
......