diff --git a/CHANGELOG.md b/CHANGELOG.md index 0655968..5cc3423 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.1.2 +## 0.1.3 - New: Developer settings to reduce flames - New: Clicking on “Text Notifications” will now open the chat directly (Android only) diff --git a/lib/src/views/chats/chat_list_components/group_list_item.dart b/lib/src/views/chats/chat_list_components/group_list_item.dart index e969e85..43696bd 100644 --- a/lib/src/views/chats/chat_list_components/group_list_item.dart +++ b/lib/src/views/chats/chat_list_components/group_list_item.dart @@ -131,7 +131,7 @@ class _UserListItem extends State { // only shows the last message in case there was no newer messages which already got deleted // This prevents, that it will show that a images got stored 10 days ago... if (newLastMessage.createdAt.isAfter( - widget.group.lastMessageExchange.subtract(const Duration(minutes: 10)), + widget.group.lastMessageExchange.subtract(const Duration(days: 2)), )) { _currentMessage = newLastMessage; _previewMessages = [newLastMessage]; diff --git a/pubspec.yaml b/pubspec.yaml index d5087c1..bbf74e6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: "twonly, a privacy-friendly way to connect with friends through sec publish_to: 'none' -version: 0.1.1+101 +version: 0.1.2+102 environment: sdk: ^3.11.0