codeBOKER commited on
Commit
2312098
·
verified ·
1 Parent(s): 4a198c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -79,7 +79,7 @@ async def telegram_webhook(request: Request):
79
  # Get the intelligent response
80
  ai_answer = await get_ai_response(user_text)
81
  # Send back to Telegram
82
- async with httpx.AsyncClient() as client:
83
  await client.post(
84
  TELEGRAM_URL,
85
  headers={"Host": "api.telegram.org"},
 
79
  # Get the intelligent response
80
  ai_answer = await get_ai_response(user_text)
81
  # Send back to Telegram
82
+ async with httpx.AsyncClient(verify=False) as client:
83
  await client.post(
84
  TELEGRAM_URL,
85
  headers={"Host": "api.telegram.org"},