mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
oops
This commit is contained in:
parent
b5a74bd241
commit
21ebc5e84e
@ -49,7 +49,7 @@ module.exports = async (params, user, _, isSecure) => new Promise(async (res, re
|
||||
// Get 'is_bot' parameter
|
||||
const [isBot, isBotErr] = $(params.is_bot).optional.boolean().$;
|
||||
if (isBotErr) return rej('invalid is_bot param');
|
||||
if (isBot) user.is_bot = isBot;
|
||||
if (isBot != null) user.is_bot = isBot;
|
||||
|
||||
await User.update(user._id, {
|
||||
$set: {
|
||||
|
Loading…
Reference in New Issue
Block a user