mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 16:28:40 +00:00
bug fix
This commit is contained in:
parent
f93f0025a7
commit
8632837bdf
2 changed files with 2 additions and 2 deletions
|
|
@ -149,7 +149,7 @@ class _ChatMessagesViewState extends State<ChatMessagesView> {
|
||||||
});
|
});
|
||||||
|
|
||||||
final filteredMediaFiles = displayedMessages
|
final filteredMediaFiles = displayedMessages
|
||||||
.where((x) => x.kind == MessageKind.media)
|
.where((x) => x.kind == MessageKind.media && x.mediaStored)
|
||||||
.toList()
|
.toList()
|
||||||
.reversed
|
.reversed
|
||||||
.toList();
|
.toList();
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ description: "twonly, a privacy-friendly way to connect with friends through sec
|
||||||
# Prevent accidental publishing to pub.dev.
|
# Prevent accidental publishing to pub.dev.
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.0.28+28
|
version: 0.0.29+29
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.6.0
|
sdk: ^3.6.0
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue