update for new channel-helper

This commit is contained in:
2025-08-09 22:17:02 +03:00
parent 3e275f54c4
commit f1684edef8

View File

@@ -367,7 +367,7 @@ async def send_callback(cq: CallbackQuery):
async with httpx.AsyncClient() as client:
try:
subdomain = 'ch' + 'sfw' if destination == 'pics' else 'nsfw'
r = await client.post(f'https://{subdomain}.bakatrouble.me/{upload_key}/', files={'upload': img_bytes})
r = await client.post(f'https://{subdomain}.bakatrouble.me/{upload_key}/photo', files={'upload': img_bytes})
logging.info(r.text)
resp = r.json()
result = resp.get('result')