Fix default media_mime for media events
This commit is contained in:
parent
96e61f15ce
commit
b30ce33494
1
TODO.md
1
TODO.md
|
@ -4,7 +4,6 @@
|
||||||
- highlight messages with mention
|
- highlight messages with mention
|
||||||
- add room members loading indicator
|
- add room members loading indicator
|
||||||
|
|
||||||
- fix media_mime
|
|
||||||
- fix lag when clicking accounts in the AccountBar with a very long room list
|
- fix lag when clicking accounts in the AccountBar with a very long room list
|
||||||
- fix: on startup, if a room's last event is a membership change,
|
- fix: on startup, if a room's last event is a membership change,
|
||||||
it won't be visible in timeline no matter what the user config is
|
it won't be visible in timeline no matter what the user config is
|
||||||
|
|
|
@ -149,7 +149,7 @@ class NioCallbacks:
|
||||||
media_height = info.get("h") or 0,
|
media_height = info.get("h") or 0,
|
||||||
media_duration = info.get("duration") or 0,
|
media_duration = info.get("duration") or 0,
|
||||||
media_size = info.get("size") or 0,
|
media_size = info.get("size") or 0,
|
||||||
media_mime = info.get("mimetype") or 0,
|
media_mime = info.get("mimetype") or "",
|
||||||
media_crypt_dict = media_crypt_dict,
|
media_crypt_dict = media_crypt_dict,
|
||||||
|
|
||||||
thumbnail_url =
|
thumbnail_url =
|
||||||
|
|
Loading…
Reference in New Issue
Block a user