From 072cb1f8231604abfc2cd50f045caeb52e053fe6 Mon Sep 17 00:00:00 2001 From: Lain Date: Fri, 10 Jan 2025 01:34:53 -0300 Subject: [PATCH] redact previous messages --- hateheif.py | 2 ++ 1 file changed, 2 insertions(+) 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