Remove missing Content-Type.
This commit is contained in:
parent
9befbf206c
commit
1654523083
@ -73,7 +73,7 @@ func (actor *Actor) RetrieveRemoteActor(url string, uaString string, cache *cach
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
req, _ := http.NewRequest("GET", url, nil)
|
req, _ := http.NewRequest("GET", url, nil)
|
||||||
req.Header.Set("Accept", "application/activity+json, application/ld+json")
|
req.Header.Set("Accept", "application/activity+json")
|
||||||
req.Header.Set("User-Agent", uaString)
|
req.Header.Set("User-Agent", uaString)
|
||||||
client := new(http.Client)
|
client := new(http.Client)
|
||||||
resp, err := client.Do(req)
|
resp, err := client.Do(req)
|
||||||
|
@ -34,7 +34,7 @@ func appendSignature(request *http.Request, body *[]byte, KeyID string, publicKe
|
|||||||
|
|
||||||
func sendActivity(inboxURL string, KeyID string, body []byte, publicKey *rsa.PrivateKey) error {
|
func sendActivity(inboxURL string, KeyID string, body []byte, publicKey *rsa.PrivateKey) error {
|
||||||
req, _ := http.NewRequest("POST", inboxURL, bytes.NewBuffer(body))
|
req, _ := http.NewRequest("POST", inboxURL, bytes.NewBuffer(body))
|
||||||
req.Header.Set("Content-Type", "application/activity+json, application/ld+json")
|
req.Header.Set("Content-Type", "application/activity+json")
|
||||||
req.Header.Set("User-Agent", uaString)
|
req.Header.Set("User-Agent", uaString)
|
||||||
req.Header.Set("Date", httpdate.Time2Str(time.Now()))
|
req.Header.Set("Date", httpdate.Time2Str(time.Now()))
|
||||||
appendSignature(req, &body, KeyID, publicKey)
|
appendSignature(req, &body, KeyID, publicKey)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user