Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

404 on missing torrents

Cette révision appartient à :
Andrew Zhao 2017-05-07 00:02:38 -07:00
Parent c2606a37ed
révision c0fc47b4d2

Voir le fichier

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