diff --git a/discorss.py b/discorss.py index 94d3dec..357537c 100755 --- a/discorss.py +++ b/discorss.py @@ -43,13 +43,13 @@ app_config = {} # TODO: make the character limit smarter, as to split at a natural point def get_description(feed): try: - temporary_string = str(feed.entries[0]["summary_detail"]["value"]) + temporary_string = str(feed["summary_detail"]["value"]) temporary_string = html_filter.sub("", temporary_string) desc = ( temporary_string[:250] if len(temporary_string) > 250 else temporary_string ) except KeyError: - temporary_string = str(feed.entries[0]["description"]) + temporary_string = str(feed["description"]) temporary_string = html_filter.sub("", temporary_string) desc = ( temporary_string[:250] if len(temporary_string) > 250 else temporary_string @@ -186,15 +186,11 @@ def main(): logger.error( "Error %d while trying to post %s", r.status_code, hook["webhook"] ) - if r.status_code not in success_codes: - 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) + + # End of feed loop + app_config["lastupdate"] = now + with open(config_file_path, "w") as config_file: + json.dump(app_config, config_file, indent=4) return