commands: remove extra dots

This commit is contained in:
Tulir Asokan
2026-04-10 13:21:29 +03:00
parent e55e596d68
commit 506e13f6b8
2 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -454,7 +454,7 @@ func (tc *TelegramClient) fnDownloadEmojiPack(ce *commands.Event) {
} else if packShortcodeRegex.MatchString(ce.Args[0]) {
input = &tg.InputStickerSetShortName{ShortName: ce.Args[0]}
} else {
ce.Reply("Invalid pack shortcode or link.")
ce.Reply("Invalid pack shortcode or link")
return
}
rawSet, err := tc.client.API().MessagesGetStickerSet(ce.Ctx, &tg.MessagesGetStickerSetRequest{Stickerset: input})