Merge pull request #3 from Tupsi/main

fix for unencrypted rooms.
This commit is contained in:
ᎠᎡ. Ѕϵrgϵ Ѵictor 2024-02-25 09:32:47 +07:00 committed by GitHub
commit 3caae3b813
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -149,6 +149,7 @@ class HateHeifBot(Plugin):
if content.url: # content.url exists. File is not encrypted.
data = await download_unencrypted_media(content.url, evt.client)
is_enc = False
elif content.file: # content.file exists. File is encrypted.
data = await download_encrypted_media(content.file, evt.client)
is_enc = True