diff --git a/lib/src/core/access.dart b/lib/src/core/access.dart index c8d3909..b799649 100644 --- a/lib/src/core/access.dart +++ b/lib/src/core/access.dart @@ -33,7 +33,7 @@ class Access { required OnFailureCallback onFailure}) async { var user = await _userDb.getSingleUserForChat(event.chatId, event.userId); - if (user == null || user.banned || user.deleted) { + if (user == null || user.banned) { return onFailure(event); }