mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-22 08:46:54 -06:00
Server: fix status code when updating/removing a user
This commit is contained in:
parent
66af9ee16d
commit
10431358b2
@ -122,7 +122,7 @@ function removeUser (req, res, next) {
|
||||
return next(err)
|
||||
}
|
||||
|
||||
return res.type('json').status(204).end()
|
||||
return res.sendStatus(204)
|
||||
})
|
||||
}
|
||||
|
||||
@ -134,7 +134,7 @@ function updateUser (req, res, next) {
|
||||
user.save(function (err) {
|
||||
if (err) return next(err)
|
||||
|
||||
return res.json('json').status(204).end()
|
||||
return res.sendStatus(204)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user