fix analysis

This commit is contained in:
Salvatore Giordano
2021-06-18 11:04:53 +02:00
parent 279e4f2fbf
commit 3eb336e93d
3 changed files with 5 additions and 5 deletions
@@ -1888,7 +1888,7 @@ class ChannelClientState {
void _clean() {
final now = DateTime.now();
_typings.forEach((user, event) {
if (now.difference(event.createdAt!).inSeconds > 7) {
if (now.difference(event.createdAt).inSeconds > 7) {
_channel.client.handleEvent(
Event(
type: EventType.typingStop,