From 6f6dd4fb4cef34f77abc1bbc955a82bf354bd89e Mon Sep 17 00:00:00 2001 From: Tupsi Date: Tue, 13 Feb 2024 17:29:30 +0100 Subject: [PATCH] Update hateheif.py unencrypted rooms fail because is_enc is undefined, resulting in "if is_enc" throwing an error on line 168. --- hateheif.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hateheif.py b/hateheif.py index 336204f..18a59f9 100644 --- a/hateheif.py +++ b/hateheif.py @@ -149,6 +149,7 @@ class HateHeifBot(Plugin): if content.url: # content.url exists. File is not encrypted. data = await download_unencrypted_media(content.url, evt.client) + is_enc = False elif content.file: # content.file exists. File is encrypted. data = await download_encrypted_media(content.file, evt.client) is_enc = True