We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c0c5eb commit 13a8886Copy full SHA for 13a8886
cmd/version.go
@@ -7,7 +7,7 @@ import (
7
)
8
9
const (
10
- Version string = "0.6.11"
+ Version string = "0.6.12"
11
12
13
var VersionCmd = &cobra.Command{
telegram/telegram.go
@@ -131,9 +131,10 @@ func InitBot() {
131
}
132
Bot.SetMyCommands(&telego.SetMyCommandsParams{
133
Commands: adminCommands,
134
- Scope: &telego.BotCommandScopeChat{
+ Scope: &telego.BotCommandScopeChatMember{
135
Type: telego.ScopeTypeChat,
136
- ChatID: telegoutil.ID(adminID),
+ ChatID: GroupChatID,
137
+ UserID: adminID,
138
},
139
})
140
0 commit comments