frontend: fix empty result bug
This commit is contained in:
parent
c617ae4e0a
commit
9fc5076681
@ -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"
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user