frontend: fix empty result bug

This commit is contained in:
Lan Tian 2020-07-10 00:12:02 +08:00
parent c617ae4e0a
commit 9fc5076681
No known key found for this signature in database
GPG Key ID: 27F31700E751EC22

View File

@ -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"
}