Merge pull request #2 from ajkessel/main
Element (sometimes) uploads heifs as files rather than images, need to check for both. I'm merging it without testing, but I might test in future if I have a mac available.
This commit is contained in:
commit
64b36a2447
1 changed files with 4 additions and 2 deletions
|
@ -122,7 +122,7 @@ class HateHeifBot(Plugin):
|
|||
self.rooms = self.config['rooms'] if self.config['rooms'] else None
|
||||
|
||||
|
||||
@command.passive("", msgtypes=(MessageType.IMAGE,))
|
||||
@command.passive("", msgtypes=(MessageType.IMAGE,MessageType.FILE))
|
||||
async def hate_heif_message(
|
||||
self,
|
||||
evt: MessageEvent,
|
||||
|
@ -137,7 +137,7 @@ class HateHeifBot(Plugin):
|
|||
return
|
||||
|
||||
# Double check if it is an image message
|
||||
if evt.content.msgtype != MessageType.IMAGE:
|
||||
if evt.content.msgtype != MessageType.IMAGE and evt.content.msgtype != MessageType.FILE:
|
||||
return
|
||||
|
||||
content: MediaMessageEventContent = evt.content
|
||||
|
@ -165,6 +165,8 @@ class HateHeifBot(Plugin):
|
|||
img = img_out.getvalue()
|
||||
img_tst = Image.open(BytesIO(img))
|
||||
self.log.debug(f"Created image parameters: {img_tst.format} {img_tst.size} {img_tst.mode}")
|
||||
content.info.width=img_tst.size[0]
|
||||
content.info.height=img_tst.size[1]
|
||||
|
||||
if is_enc:
|
||||
img_enc = attachments.encrypt_attachment(img)
|
||||
|
|
Loading…
Add table
Reference in a new issue