return after redirects to web representation (#755)

This commit is contained in:
tobi 2022-08-16 20:50:26 +02:00 committed by GitHub
parent ac6ed3d939
commit 586ebb5059
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 0 deletions

View File

@ -48,6 +48,7 @@ func (m *Module) FollowersGETHandler(c *gin.Context) {
if format == string(api.TextHTML) {
// redirect to the user's profile
c.Redirect(http.StatusSeeOther, "/@"+requestedUsername)
return
}
resp, errWithCode := m.processor.GetFediFollowers(transferContext(c), requestedUsername, c.Request.URL)

View File

@ -48,6 +48,7 @@ func (m *Module) FollowingGETHandler(c *gin.Context) {
if format == string(api.TextHTML) {
// redirect to the user's profile
c.Redirect(http.StatusSeeOther, "/@"+requestedUsername)
return
}
resp, errWithCode := m.processor.GetFediFollowing(transferContext(c), requestedUsername, c.Request.URL)

View File

@ -99,6 +99,7 @@ func (m *Module) OutboxGETHandler(c *gin.Context) {
if format == string(api.TextHTML) {
// redirect to the user's profile
c.Redirect(http.StatusSeeOther, "/@"+requestedUsername)
return
}
var page bool

View File

@ -52,6 +52,7 @@ func (m *Module) PublicKeyGETHandler(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)

View File

@ -113,6 +113,7 @@ func (m *Module) StatusRepliesGETHandler(c *gin.Context) {
if format == string(api.TextHTML) {
// redirect to the status
c.Redirect(http.StatusSeeOther, "/@"+requestedUsername+"/statuses/"+requestedStatusID)
return
}
var page bool

View File

@ -56,6 +56,7 @@ func (m *Module) StatusGETHandler(c *gin.Context) {
if format == string(api.TextHTML) {
// redirect to the status
c.Redirect(http.StatusSeeOther, "/@"+requestedUsername+"/statuses/"+requestedStatusID)
return
}
resp, errWithCode := m.processor.GetFediStatus(transferContext(c), requestedUsername, requestedStatusID, c.Request.URL)

View File

@ -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)