diff --git a/greataped/server/http_context.go b/greataped/server/http_context.go index 10b6041..c637648 100644 --- a/greataped/server/http_context.go +++ b/greataped/server/http_context.go @@ -173,7 +173,8 @@ func (context *httpServerContext) requestActivityStream(method, url, keyId, priv defer res.Body.Close() } - if res.StatusCode != http.StatusOK { + if res.StatusCode != http.StatusOK && + res.StatusCode != http.StatusAccepted { return fmt.Errorf("%s", res.Status) }