Browse Source

Check HTTP error code correctly

poesty 9 tháng trước cách đây
mục cha
commit
4dc32872e8
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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)
 	}
 }