bump version
This commit is contained in:
@@ -155,7 +155,6 @@ class _MessageListViewState extends State<MessageListView> {
|
||||
},
|
||||
child: ListView.custom(
|
||||
key: Key('messageListView'),
|
||||
shrinkWrap: true,
|
||||
physics: widget.scrollPhysics,
|
||||
controller: _scrollController,
|
||||
reverse: true,
|
||||
|
||||
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user