Skip to content
This repository has been archived by the owner on Jan 19, 2025. It is now read-only.

Twilio日本語化 #64

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Twilio日本語化
  • Loading branch information
crab85193 committed Nov 16, 2023
commit 403d6f9f819ac0b4f2cdb22b2f971567720946b9
2 changes: 1 addition & 1 deletion main_app/call_manager.py
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ def __init__(self):
self.__client = Client(account_sid, auth_token)

def call(self, message, phone_number):
_twiml = f'<Response><Say>{message}</Say></Response>'
_twiml = f'<Response><Say language="ja-jp">{message}</Say></Response>'
_from = os.environ.get("FROM_PHONE_NUMBER")
_to = f"+81{phone_number[1:]}"