Fixes broadcasting

This commit is contained in:
Mouse Reeve
2020-09-29 21:08:04 -07:00
parent acba5cfc75
commit 8260dcf804
2 changed files with 2 additions and 3 deletions

View File

@ -57,7 +57,7 @@ def broadcast_task(sender_id, activity, recipients):
except requests.exceptions.HTTPError as e:
# TODO: maybe keep track of users who cause errors
errors.append({
'error': e,
'error': str(e),
'recipient': recipient,
'activity': activity,
})