From 9fc5076681e18fbe6c52b7d95cff2fa80395bcbe Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Fri, 10 Jul 2020 00:12:02 +0800 Subject: [PATCH] frontend: fix empty result bug --- frontend/telegram_bot.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/telegram_bot.go b/frontend/telegram_bot.go index 4767e42..3a8c421 100644 --- a/frontend/telegram_bot.go +++ b/frontend/telegram_bot.go @@ -145,7 +145,7 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) { } commandResult = strings.TrimSpace(commandResult) - if len(commandResult) < 0 { + if len(commandResult) <= 0 { commandResult = "empty result" }