[API] Fix bug

This commit is contained in:
syuilo 2017-01-21 21:12:12 +09:00
parent 5da436a285
commit a9a763f8c4
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@ module.exports = (app: express.Application) => {
const user = await User.findOneAndUpdate({ const user = await User.findOneAndUpdate({
token: res.locals.user token: res.locals.user
}, { }, {
$unset: { $set: {
twitter: '' twitter: null
} }
}); });