Update hateheif.py
unencrypted rooms fail because is_enc is undefined, resulting in "if is_enc" throwing an error on line 168.
This commit is contained in:
parent
52cf166960
commit
6f6dd4fb4c
1 changed files with 1 additions and 0 deletions
|
@ -149,6 +149,7 @@ class HateHeifBot(Plugin):
|
||||||
|
|
||||||
if content.url: # content.url exists. File is not encrypted.
|
if content.url: # content.url exists. File is not encrypted.
|
||||||
data = await download_unencrypted_media(content.url, evt.client)
|
data = await download_unencrypted_media(content.url, evt.client)
|
||||||
|
is_enc = False
|
||||||
elif content.file: # content.file exists. File is encrypted.
|
elif content.file: # content.file exists. File is encrypted.
|
||||||
data = await download_encrypted_media(content.file, evt.client)
|
data = await download_encrypted_media(content.file, evt.client)
|
||||||
is_enc = True
|
is_enc = True
|
||||||
|
|
Loading…
Add table
Reference in a new issue