feat: add notice for unreviewed annotations, and fix failed tests

This commit is contained in:
rramiachraf 2024-09-18 14:34:20 +01:00
parent c81feb465b
commit 2d4ada55a8
7 changed files with 110 additions and 76 deletions

View file

@ -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())
}
}