1
0
Fork 1
mirror of https://github.com/maunium/stickerpicker synced 2024-09-16 00:11:03 +00:00

add missing msgtype = m.sticker

On iOS the message is sent twice, with a duplicate event_id.
It cause error on logs, in different places (synapse, mautrix, ...)

It required to fix the already existing json or reimport the stickers.

The "packs/scalar*" example already include this field, and it works.
This commit is contained in:
celogeek 2021-02-07 17:50:40 +01:00
parent ba0096275c
commit 85813b22e5
No known key found for this signature in database
GPG key ID: E6B7BDCFC446233A
2 changed files with 2 additions and 0 deletions

View file

@ -42,6 +42,7 @@ if TYPE_CHECKING:
url: str
info: MediaInfo
id: str
msgtype: str
else:
MediaInfo = None
StickerInfo = None

View file

@ -74,4 +74,5 @@ def make_sticker(mxc: str, width: int, height: int, size: int,
"mimetype": "image/png",
},
},
"msgtype": "m.sticker",
}