404 on missing torrents
Cette révision appartient à :
Parent
c2606a37ed
révision
c0fc47b4d2
1 fichiers modifiés avec 4 ajouts et 0 suppressions
|
@ -19,6 +19,10 @@ func ViewHandler(w http.ResponseWriter, r *http.Request) {
|
|||
id := vars["id"]
|
||||
|
||||
torrent, err := torrentService.GetTorrentById(id)
|
||||
if err != nil {
|
||||
NotFoundHandler(w, r)
|
||||
return
|
||||
}
|
||||
b := torrent.ToJson()
|
||||
|
||||
htv := ViewTemplateVariables{b, NewSearchForm(), Navigation{}, r.URL, mux.CurrentRoute(r)}
|
||||
|
|
Référencer dans un nouveau ticket