diff --git a/internal/app/bots/botfather.go b/internal/app/bots/botfather.go index 6dd7dcbb..7f6fb065 100644 --- a/internal/app/bots/botfather.go +++ b/internal/app/bots/botfather.go @@ -388,7 +388,7 @@ func (s *Service) handleBotFatherStart(ctx context.Context, userID int64, arg st _ = s.bots.DeleteBotChatState(ctx, domain.BotFatherUserID, userID) want := strings.ToLower(strings.TrimPrefix(strings.TrimSpace(arg), "@")) if want == "" { - return botReply{Text: botFatherHelpText} + return botReply{Text: botFatherHelpText()} } owned, err := s.ownedBots(ctx, userID) if err != nil { @@ -411,7 +411,7 @@ func (s *Service) handleBotFatherStart(ctx context.Context, userID int64, arg st return reply } } - return botReply{Text: botFatherHelpText} + return botReply{Text: botFatherHelpText()} } func (s *Service) handleBotFatherCommand(ctx context.Context, userID int64, cmd string) botReply {