[BUG] Fix unblock action
- At some point the unblock button was transformed into being handled by Javascript, however the endpoint didn't yet respond in JSON. - Ref: https://codeberg.org/kita/.profile/raw/branch/main/img/G94IqS9.png (cherry picked from commit a3f1249f0a52b348a9002954c370cb27f574d265)
This commit is contained in:
parent
730c667122
commit
0af1418e6e
1 changed files with 1 additions and 0 deletions
|
@ -358,6 +358,7 @@ func Action(ctx *context.Context) {
|
|||
redirectViaJSON = true
|
||||
case "unblock":
|
||||
err = user_model.UnblockUser(ctx, ctx.Doer.ID, ctx.ContextUser.ID)
|
||||
redirectViaJSON = true
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue