1
0
Quellcode durchsuchen

Check HTTP error code correctly

poesty vor 9 Monaten
Ursprung
Commit
4dc32872e8
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      rss2hook.go

+ 2 - 2
rss2hook.go

@@ -138,8 +138,8 @@ func notify(i int, item *rss.Item) {
 	}
 	status := res.StatusCode
 
-	if status != 200 {
-		log.Printf("notify: Warning - Status code was not 200: %d\n", status)
+	if status >= 400 {
+		log.Printf("notify: Warning - Status code %d from %s\n", status, Loaded[i].Hook)
 	}
 }