diff --git a/CHANGELOG.md b/CHANGELOG.md index 960f2f3b..73b07a1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 1.7.2 (develop) + +### Feature + +* Mobile connection via sms + +### Fixed + +* Adjusts in redis +* Send global event in websocket + # 1.7.1 (2024-04-03 10:19) ### Fixed diff --git a/src/whatsapp/services/whatsapp.baileys.service.ts b/src/whatsapp/services/whatsapp.baileys.service.ts index cd26d84b..9f0475cd 100644 --- a/src/whatsapp/services/whatsapp.baileys.service.ts +++ b/src/whatsapp/services/whatsapp.baileys.service.ts @@ -617,7 +617,7 @@ export class BaileysStartupService extends WAStartupService { } registration.phoneNumberMobileCountryCode = mcc; - registration.method = 'voice'; + registration.method = 'sms'; try { const response = await this.client.requestRegistrationCode(registration);