redact previous messages

This commit is contained in:
Lain Iwakura 2025-01-10 01:34:53 -03:00
parent 9ea814be78
commit 072cb1f823
Signed by: lain
GPG key ID: 89686F4239E80508

View file

@ -148,9 +148,11 @@ class HateHeifBot(Plugin):
return
if content.url: # content.url exists. File is not encrypted.
await evt.redact(reason="Image converted to less appleish format bellow")
data = await download_unencrypted_media(content.url, evt.client)
is_enc = False
elif content.file: # content.file exists. File is encrypted.
await client.redact(evt.room_id, evt.event_id, reason="Image converted to less appleish format bellow")
data = await download_encrypted_media(content.file, evt.client)
is_enc = True
else: # shouldn't happen