fix how we deal with failure to get timeline toots

This commit is contained in:
nanos 2023-03-21 14:22:19 +00:00
parent 79b69e7fdc
commit 38231cc4f6

View file

@ -236,7 +236,7 @@ def get_timeline(server, access_token, max):
toots = toots + response.json()
except Exception as ex:
log(f"Error getting timeline toots: {ex}")
sys.exit(1)
raise
log(f"Found {len(toots)} toots in timeline")