diff --git a/hateheif.py b/hateheif.py index 57a92c7..663f2e7 100644 --- a/hateheif.py +++ b/hateheif.py @@ -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