This commit is contained in:
Auric Vente 2024-04-20 19:17:38 -06:00
parent c556a2d422
commit 4fb6d50f2b
1 changed files with 7 additions and 1 deletions

View File

@ -683,7 +683,13 @@ async def upload(path, room_id):
url = "https://deek.chat/message/send/" + str(room_id) url = "https://deek.chat/message/send/" + str(room_id)
data = aiohttp.FormData() data = aiohttp.FormData()
data.add_field(name="files[]", value=open(path, "rb"), filename=path.name, content_type=f"image/{ext}")
if ext in ["webm", "mp4"]:
ctype = f"video/{ext}"
else:
ctype = f"image/{ext}"
data.add_field(name="files[]", value=open(path, "rb"), filename=path.name, content_type=ctype)
try: try:
async with aiohttp.ClientSession(cookies=cookies) as sess: async with aiohttp.ClientSession(cookies=cookies) as sess: