diff --git a/telegram/routines/joinchecker.go b/telegram/routines/joinchecker.go index 6374b4a..ed14f22 100644 --- a/telegram/routines/joinchecker.go +++ b/telegram/routines/joinchecker.go @@ -35,6 +35,11 @@ func (j joinCheckerRoutine) Update(botAPI *tgbotapi.BotAPI, update *tgbotapi.Upd if update.Message.NewChatMembers != nil { for _, newUser := range *update.Message.NewChatMembers { + + if newUser.IsBot { + continue + } + length := 3 tasks := make([][]tgbotapi.InlineKeyboardButton, length)