Skip to content

Commit 131ae64

Browse files
committed
webhook
1 parent ce1ce80 commit 131ae64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async def handle_webhook(request: Request):
2424
try:
2525
post_data = await request.json()
2626
valid_signature = retell.verify(
27-
json.dumps(post_data, separators=(",", ":")),
27+
json.dumps(post_data, separators=(",", ":"), ensure_ascii=False),
2828
api_key=str(os.environ["RETELL_API_KEY"]),
2929
signature=str(request.headers.get("X-Retell-Signature")),
3030
)

0 commit comments

Comments
 (0)