Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Merge pull request #394 from tomleb/dev

Fix dereference wrong error
Cette révision appartient à :
PantsuDev 2017-05-13 01:24:23 +10:00 révisé par GitHub
révision dc89495b65

Voir le fichier

@ -43,11 +43,11 @@ func RSSHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
rss, rssErr := feed.ToRss()
if rssErr != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
http.Error(w, rssErr.Error(), http.StatusInternalServerError)
}
_, writeErr := w.Write([]byte(rss))
if writeErr != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
http.Error(w, writeErr.Error(), http.StatusInternalServerError)
}
}