Fixed status code checking

This commit is contained in:
A.M. Rowsell 2025-02-26 20:12:29 -05:00
parent 7d84c7c257
commit 1c78edd38e
Signed by: amr
GPG key ID: 0B6E2D8375CF79A9

View file

@ -33,7 +33,7 @@ log_file_path = r"/app.log"
# Yes, I know you "can't parse HTML with regex", but
# just watch me.
html_filter = re.compile(r"\<\/?([A-Za-z \:\.\/\"\=])*\>")
success_codes = ["200", "201", "202", "203", "204", "205", "206"]
success_codes = [200, 201, 202, 203, 204, 205, 206]
app_config = {}
@ -108,8 +108,7 @@ def main():
last_check = app_config["lastupdate"]
except KeyError:
last_check = now - 21600 # first run, no lastupdate, check up to 6 hours ago
for i, hook in enumerate(app_config["feeds"]):
# Get the feed
for i, hook in enumerate(app_config["feeds"]): # Feed loop start
logger.info("Parsing feed %s...", hook["name"])
feeds = feedparser.parse(hook["url"])
latest_post = []