redact previous messages
This commit is contained in:
parent
9ea814be78
commit
072cb1f823
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue