From 6c0d51f57c7ebe032a7b03eebd7e602780917648 Mon Sep 17 00:00:00 2001 From: Naoki Kosaka Date: Sat, 15 Jun 2019 20:28:39 +0900 Subject: [PATCH] Append post error details. --- worker/sender.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/sender.go b/worker/sender.go index c5fcc94..95c29a2 100644 --- a/worker/sender.go +++ b/worker/sender.go @@ -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