mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 21:37:38 +03:00
feat: add notice for unreviewed annotations, and fix failed tests
This commit is contained in:
parent
c81feb465b
commit
2d4ada55a8
7 changed files with 110 additions and 76 deletions
|
@ -62,18 +62,18 @@ func annotations(l *utils.Logger) http.HandlerFunc {
|
|||
return
|
||||
}
|
||||
|
||||
body := data.Response.Referent.Annotations[0].Body
|
||||
body.HTML = utils.CleanBody(body.HTML)
|
||||
annotation := data.Response.Referent.Annotations[0]
|
||||
annotation.Body.HTML = utils.CleanBody(annotation.Body.HTML)
|
||||
|
||||
w.Header().Set("content-type", "application/json")
|
||||
encoder := json.NewEncoder(w)
|
||||
|
||||
if err = encoder.Encode(&body); err != nil {
|
||||
if err = encoder.Encode(&annotation); err != nil {
|
||||
l.Error("Error sending response: %s", err.Error())
|
||||
return
|
||||
}
|
||||
|
||||
if err = setCache("annotation:"+id, body); err != nil {
|
||||
if err = setCache("annotation:"+id, annotation); err != nil {
|
||||
l.Error(err.Error())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue