diff --git a/src/providers/twilio/twilio.service.ts b/src/providers/twilio/twilio.service.ts index 829edfe77..9cba04a1c 100644 --- a/src/providers/twilio/twilio.service.ts +++ b/src/providers/twilio/twilio.service.ts @@ -21,7 +21,10 @@ export class TwilioService { ); if (!twilioAccountSid || !twilioAuthToken) this.logger.warn('Twilio account SID/auth token not found'); - this.client = twilio(twilioAccountSid ?? '', twilioAuthToken ?? ''); + this.client = twilio( + twilioAccountSid || 'ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', + twilioAuthToken || 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', + ); } send(options: MessageListInstanceCreateOptions) {