Append post error details.

This commit is contained in:
Naoki Kosaka 2019-06-15 20:28:39 +09:00
parent 6ca6c9aad0
commit 6c0d51f57c

View File

@ -47,7 +47,7 @@ func sendActivity(inboxURL string, KeyID string, body []byte, publicKey *rsa.Pri
fmt.Println(inboxURL, resp.StatusCode)
if resp.StatusCode/100 != 2 {
return errors.New(resp.Status)
return errors.New("Post " + inboxURL + ": " + resp.Status)
}
return nil