1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-11-25 08:38:59 +00:00

less error spam

This commit is contained in:
Lynne Megido 2020-01-20 12:12:53 +10:00
parent d06f89ed3f
commit fa60a6569d
Signed by: lynnesbian
GPG key ID: F0A184B5213D9F90

View file

@ -258,9 +258,12 @@ def push(id):
'privkey': int(bot[0].rstrip("\0")), 'privkey': int(bot[0].rstrip("\0")),
'auth': bot[1] 'auth': bot[1]
} }
try:
push_object = client.push_subscription_decrypt_push(request.data, params, request.headers['Encryption'], request.headers['Crypto-Key']) push_object = client.push_subscription_decrypt_push(request.data, params, request.headers['Encryption'], request.headers['Crypto-Key'])
notification = client.notifications(id = push_object['notification_id']) notification = client.notifications(id = push_object['notification_id'])
me = client.account_verify_credentials()['id'] me = client.account_verify_credentials()['id']
except:
return "Push failed - do we still have access to {}?".format(id)
# first, check how many times the bot has posted in this thread. # first, check how many times the bot has posted in this thread.
# if it's over 15, don't reply. # if it's over 15, don't reply.