Stop double-encoding broadcasts

Fixes #234
This commit is contained in:
Mouse Reeve
2020-11-02 15:19:58 -08:00
parent c5a215b11d
commit f9d8115ba6
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ def broadcast_task(sender_id, activity, recipients):
return errors
def sign_and_send(sender, activity, destination):
def sign_and_send(sender, data, destination):
''' crpyto whatever and http junk '''
now = http_date()
@ -69,7 +69,6 @@ def sign_and_send(sender, activity, destination):
# this shouldn't happen. it would be bad if it happened.
raise ValueError('No private key found for sender')
data = json.dumps(activity).encode('utf-8')
digest = make_digest(data)
response = requests.post(