Add err check from GetTorrentById return in ApiViewHandler (#696)
This should give a better response to API users for when something is not found.
Cette révision appartient à :
Parent
af2850518c
révision
6cfaca1289
1 fichiers modifiés avec 6 ajouts et 0 suppressions
|
@ -92,6 +92,12 @@ func ApiViewHandler(w http.ResponseWriter, r *http.Request) {
|
|||
id := vars["id"]
|
||||
|
||||
torrent, err := torrentService.GetTorrentById(id)
|
||||
|
||||
if err != nil {
|
||||
http.Error(w, err.Error(), http.StatusNotFound)
|
||||
return
|
||||
}
|
||||
|
||||
b := torrent.ToJSON()
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
err = json.NewEncoder(w).Encode(b)
|
||||
|
|
Référencer dans un nouveau ticket