mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
fix: check ignored errors
This commit is contained in:
parent
a5bc03959e
commit
dccfd17bcc
6 changed files with 32 additions and 15 deletions
|
@ -85,9 +85,11 @@ func Annotations(l *logrus.Logger) http.HandlerFunc {
|
|||
return
|
||||
}
|
||||
|
||||
setCache(id, body)
|
||||
_, err = w.Write(response)
|
||||
if err != nil {
|
||||
if err = setCache(id, body); err != nil {
|
||||
l.Errorln(err)
|
||||
}
|
||||
|
||||
if _, err = w.Write(response); err != nil {
|
||||
l.Errorln("Error sending response: ", err)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue