Google Reader: Do not return a 500 error when no items is returned

This commit is contained in:
Frédéric Guillot 2024-02-25 20:56:08 -08:00
parent 7a8061fc72
commit 9d1b1e19d4
1 changed files with 5 additions and 5 deletions

View File

@ -909,7 +909,7 @@ func (h *handler) streamItemContentsHandler(w http.ResponseWriter, r *http.Reque
)
if err := checkOutputFormat(w, r); err != nil {
json.ServerError(w, r, err)
json.BadRequest(w, r, err)
return
}
@ -960,7 +960,7 @@ func (h *handler) streamItemContentsHandler(w http.ResponseWriter, r *http.Reque
}
if len(entries) == 0 {
json.ServerError(w, r, fmt.Errorf("googlereader: no items returned from the database"))
json.BadRequest(w, r, fmt.Errorf("googlereader: no items returned from the database for item IDs: %v", itemIDs))
return
}
@ -1206,7 +1206,7 @@ func (h *handler) subscriptionListHandler(w http.ResponseWriter, r *http.Request
)
if err := checkOutputFormat(w, r); err != nil {
json.ServerError(w, r, err)
json.BadRequest(w, r, err)
return
}
@ -1252,7 +1252,7 @@ func (h *handler) userInfoHandler(w http.ResponseWriter, r *http.Request) {
)
if err := checkOutputFormat(w, r); err != nil {
json.ServerError(w, r, err)
json.BadRequest(w, r, err)
return
}
@ -1277,7 +1277,7 @@ func (h *handler) streamItemIDsHandler(w http.ResponseWriter, r *http.Request) {
)
if err := checkOutputFormat(w, r); err != nil {
json.ServerError(w, r, fmt.Errorf("googlereader: output only as json supported"))
json.BadRequest(w, r, err)
return
}