This commit is contained in:
erinn 2021-02-10 14:07:11 -08:00
parent b7e2d91faf
commit 88d8c432e6
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class _MessageListState extends State<MessageList> {
return;
}
Provider.of<FlwtchState>(context, listen: false).cwtch.NumMessages(Provider.of<ProfileInfoState>(context).onion, widget.conversationHandle).then((n) {
Provider.of<FlwtchState>(context, listen: false).cwtch.NumMessages(Provider.of<ProfileInfoState>(context, listen: false).onion, widget.conversationHandle).then((n) {
if (n != conversationNumMessages) setState(() => conversationNumMessages = n);
});
}