[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
This commit is contained in:
Gusted 2024-04-06 20:57:51 +02:00
parent 0a51ae26bc
commit a3f1249f0a
No known key found for this signature in database
GPG key ID: FD821B732837125F

View file

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