@ -57,7 +57,7 @@ func AddUserInChat(chatID int64, username string) error {
_, err = collection.UpdateOne(
ctx,
bson.M{"chat_id": chatID},
bson.M{"addToSet": bson.M{"users": username}},
bson.M{"$addToSet": bson.M{"users": username}},
)
return err
}