mirror of
https://github.com/dariusk/rss-to-activitypub.git
synced 2024-11-22 09:19:19 +02:00
Fix content type mismatch for Pleroma
This commit is contained in:
parent
d7a3f8b765
commit
2ce39c7e65
|
@ -38,7 +38,9 @@ function signAndSend(message, name, domain, req, res, targetDomain) {
|
|||
'Host': targetDomain,
|
||||
'Date': d.toUTCString(),
|
||||
'Signature': header,
|
||||
'Digest': `SHA-256=${digest}`
|
||||
'Digest': `SHA-256=${digest}`,
|
||||
'Content-Type': 'application/activity+json',
|
||||
'Accept': 'application/activity+json'
|
||||
},
|
||||
method: 'POST',
|
||||
json: true,
|
||||
|
|
|
@ -191,7 +191,9 @@ function signAndSend(message, name, domain, req, res, targetDomain, inbox) {
|
|||
'Host': targetDomain,
|
||||
'Date': d.toUTCString(),
|
||||
'Signature': header,
|
||||
'Digest': `SHA-256=${digest}`
|
||||
'Digest': `SHA-256=${digest}`,
|
||||
'Content-Type': 'application/activity+json',
|
||||
'Accept': 'application/activity+json'
|
||||
},
|
||||
method: 'POST',
|
||||
json: true,
|
||||
|
|
Loading…
Reference in New Issue