diff options
author | 2022-08-16 20:50:26 +0200 | |
---|---|---|
committer | 2022-08-16 19:50:26 +0100 | |
commit | 586ebb5059f2083901667cb1fe7c5c22cf9798ac (patch) | |
tree | f38937891c61b37833b48ae9e8a7732101404c17 /internal/api/s2s/user/userget.go | |
parent | [chore] Update bun / sqlite versions; update gtsmodels (#754) (diff) | |
download | gotosocial-586ebb5059f2083901667cb1fe7c5c22cf9798ac.tar.xz |
return after redirects to web representation (#755)
Diffstat (limited to 'internal/api/s2s/user/userget.go')
-rw-r--r-- | internal/api/s2s/user/userget.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/api/s2s/user/userget.go b/internal/api/s2s/user/userget.go index b5e8a84c9..508c8be7d 100644 --- a/internal/api/s2s/user/userget.go +++ b/internal/api/s2s/user/userget.go @@ -56,6 +56,7 @@ func (m *Module) UsersGETHandler(c *gin.Context) { if format == string(api.TextHTML) { // redirect to the user's profile c.Redirect(http.StatusSeeOther, "/@"+requestedUsername) + return } resp, errWithCode := m.processor.GetFediUser(transferContext(c), requestedUsername, c.Request.URL) |