update chatty

This commit is contained in:
Salvatore Giordano
2021-05-20 14:40:03 +02:00
parent 5a8f84a4c2
commit 1ec08cef83
5 changed files with 24 additions and 30 deletions
@@ -84,6 +84,6 @@ class StreamApiLocalImpl extends StreamApiRepository {
User(id: userId),
token,
);
return _client.state.user!.name != null && _client.state.user!.name != userId;
return _client.state.user!.name != userId;
}
}
@@ -99,6 +99,6 @@ class StreamApiImpl extends StreamApiRepository {
User(id: userId),
token,
);
return _client.state.user!.name != null && _client.state.user!.name != userId;
return _client.state.user!.name != userId;
}
}