Merge pull request #92 from ticketfrei/masto502

don't log Mastodon 502 errors.
stable3
b3yond 2019-05-04 12:04:55 +02:00 committed by GitHub
commit 79f16f13d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
from bot import Bot
import logging
from mastodon import Mastodon
from mastodon import Mastodon, MastodonServerError
import re
from report import Report
@ -25,8 +25,8 @@ class MastodonBot(Bot):
return mentions
try:
notifications = m.notifications()
except Exception:
logger.error("Unknown Mastodon API Error.", exc_info=True)
except MastodonServerError:
logger.error("Unknown Mastodon API Error: 502")
return mentions
for status in notifications:
if (status['type'] == 'mention' and