소스 검색

Check HTTP error code correctly

poesty 9 달 전
부모
커밋
4dc32872e8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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)
 	}
 }