[API] Fix bug
This commit is contained in:
parent
3fd2a68a45
commit
6026ef6d71
3 changed files with 16 additions and 3 deletions
|
|
@ -79,7 +79,14 @@ module.exports = async (params, user, _, isSecure) =>
|
|||
}
|
||||
|
||||
await User.update(user._id, {
|
||||
$set: user
|
||||
$set: {
|
||||
name: user.name,
|
||||
location: user.location,
|
||||
bio: user.bio,
|
||||
birthday: user.birthday,
|
||||
avatar_id: user.avatar_id,
|
||||
banner_id: user.banner_id
|
||||
}
|
||||
});
|
||||
|
||||
// Serialize
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue