diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 85c614e..017a8b8 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,9 +4,9 @@
-
+
-
+
@@ -153,7 +153,6 @@
-
@@ -178,7 +177,8 @@
-
+
+
true
diff --git a/pkg/internal/grpc/notifier.go b/pkg/internal/grpc/notifier.go
index 541badb..b329114 100644
--- a/pkg/internal/grpc/notifier.go
+++ b/pkg/internal/grpc/notifier.go
@@ -68,7 +68,7 @@ func (v *Server) NotifyUserBatch(_ context.Context, in *proto.NotifyUserBatchReq
var checklist = make(map[uint]bool, len(users))
var notifications []models.Notification
for _, user := range users {
- if checklist[user.ID] {
+ if _, ok := checklist[user.ID]; ok {
continue
}