From c7cfbe2702913a6d6e7c962992546c96aa512068 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Fri, 24 Sep 2021 17:56:48 +0200 Subject: Unblock fix (#247) * start tests for inbox posts * go mod tidy * rename transferContext * test block/unblock * improve logging * improve logging * fix comment typo --- internal/api/s2s/user/inboxpost.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/api/s2s/user/inboxpost.go') diff --git a/internal/api/s2s/user/inboxpost.go b/internal/api/s2s/user/inboxpost.go index 8e44454d7..d59555e15 100644 --- a/internal/api/s2s/user/inboxpost.go +++ b/internal/api/s2s/user/inboxpost.go @@ -40,12 +40,12 @@ func (m *Module) InboxPOSTHandler(c *gin.Context) { return } - ctx := populateContext(c) + ctx := transferContext(c) posted, err := m.processor.InboxPost(ctx, c.Writer, c.Request) if err != nil { if withCode, ok := err.(gtserror.WithCode); ok { - l.Debug(withCode.Error()) + l.Debugf("InboxPOSTHandler: %s", withCode.Error()) c.JSON(withCode.Code(), withCode.Safe()) return } @@ -55,7 +55,7 @@ func (m *Module) InboxPOSTHandler(c *gin.Context) { } if !posted { - l.Debugf("request could not be handled as an AP request; headers were: %+v", c.Request.Header) + l.Debugf("InboxPOSTHandler: request could not be handled as an AP request; headers were: %+v", c.Request.Header) c.JSON(http.StatusBadRequest, gin.H{"error": "unable to process request"}) } } -- cgit v1.2.3