diff --git a/discorss.py b/discorss.py index 288aa4e..c720c68 100755 --- a/discorss.py +++ b/discorss.py @@ -14,7 +14,7 @@ import requests import feedparser from pathlib import Path import json -import datetime +# import datetime import time import os @@ -66,10 +66,10 @@ def main(): { "title": str(feed.entries[0]["title"]), "url": str(feed.entries[0]["link"]), - "color": 5814783, - "provider": { + "color": 216128, + "footer": { "name": "DiscoRSS", - "url": "https://git.frzn.dev/amr/discorss", + # "url": "https://git.frzn.dev/amr/discorss", }, "author": {"name": str(hook["name"]), "url": str(hook["siteurl"])}, "fields": [ @@ -92,6 +92,8 @@ def main(): r = requests.post( hook["webhook"], data=webhook_string, headers=custom_header ) + if r.status_code != '200': + print("Error {} while trying to post {}".format(r.status_code, hook["webhook"])) app_config["lastupdate"] = now with open(config_file_path, "w") as config_file: json.dump(app_config, config_file, indent=4)