bump version

This commit is contained in:
Salvatore Giordano
2020-05-04 09:50:51 +02:00
parent c4c474b60c
commit da095357ed
4 changed files with 26 additions and 9 deletions
-1
View File
@@ -155,7 +155,6 @@ class _MessageListViewState extends State<MessageListView> {
},
child: ListView.custom(
key: Key('messageListView'),
shrinkWrap: true,
physics: widget.scrollPhysics,
controller: _scrollController,
reverse: true,
+1 -1
View File
@@ -201,7 +201,7 @@ class StreamChatState extends State<StreamChat> with WidgetsBindingObserver {
if (client.showLocalNotification != null) {
_newMessageSubscription = client
.on(EventType.messageNew)
.where((e) => e.user.id != user.id)
.where((e) => e.user?.id != user.id)
.listen((event) async {
var channel = client.state.channels[event.cid];