frontend: improve empty result handling
This commit is contained in:
parent
47d7168718
commit
fc098c7d50
@ -145,7 +145,10 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
commandResult = strings.TrimSpace(commandResult)
|
commandResult = strings.TrimSpace(commandResult)
|
||||||
if len(commandResult) > 0 {
|
if len(commandResult) < 0 {
|
||||||
|
commandResult = "empty result"
|
||||||
|
}
|
||||||
|
|
||||||
// Create a JSON response
|
// Create a JSON response
|
||||||
w.Header().Add("Content-Type", "application/json")
|
w.Header().Add("Content-Type", "application/json")
|
||||||
response := &tgWebhookResponse{
|
response := &tgWebhookResponse{
|
||||||
@ -163,4 +166,3 @@ func webHandlerTelegramBot(w http.ResponseWriter, r *http.Request) {
|
|||||||
// println(string(data))
|
// println(string(data))
|
||||||
w.Write(data)
|
w.Write(data)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user