summaryrefslogtreecommitdiff
path: root/lib/users/auth
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-09-10 01:32:10 +0000
committerjoonhoekim <26rote@gmail.com>2025-09-10 01:32:10 +0000
commitdf32fc5d6ab8bd044d6a26a459fe15869c99767e (patch)
tree0e925759050e268e02c7a4eff2b0f32d520dad0a /lib/users/auth
parentd40ae7f3898f979ab0d9aafc4c128fe23cc9ea4b (diff)
(김준회) 비즈뿌리오 SMS 전송시 국가코드 숫자로 보내도록 변경
Diffstat (limited to 'lib/users/auth')
-rw-r--r--lib/users/auth/passwordUtil.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/users/auth/passwordUtil.ts b/lib/users/auth/passwordUtil.ts
index 7cf101c7..6625edb4 100644
--- a/lib/users/auth/passwordUtil.ts
+++ b/lib/users/auth/passwordUtil.ts
@@ -431,7 +431,7 @@ async function sendSmsMessage(phoneNumber: string, message: string): Promise<boo
type: 'sms',
from: fromNumber,
to: countryInfo.nationalNumber,
- country: countryInfo.countryCode,
+ country: parseInt(countryInfo.countryCode, 10), // 문자열을 숫자로 변환
content: {
sms: {
message: message