COde updates

This commit is contained in:
Astra 2026-02-16 17:40:56 +00:00
parent 432ee62807
commit 03c5ec07c1
4 changed files with 125 additions and 3 deletions

View file

@ -56,8 +56,11 @@ func main() {
}
}
if update.Message.Chat.ID == *b.Config.AdminChatId && update.Message.ReplyToMessage != nil {
b.HandleDeclineReason(&update)
if update.Message.Chat.ID == *b.Config.AdminChatId {
if update.Message.ReplyToMessage != nil {
b.HandleDeclineReason(&update)
}
b.HandleAdminCommands(&update)
}
}
}