mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
[API] Fix bug
This commit is contained in:
parent
12811d6056
commit
7435dfcacf
@ -76,7 +76,9 @@ module.exports = (params, user) =>
|
||||
}
|
||||
}
|
||||
|
||||
DriveFile.update(file._id, file);
|
||||
DriveFile.update(file._id, {
|
||||
$set: file
|
||||
});
|
||||
|
||||
// Serialize
|
||||
const fileObj = await serialize(file);
|
||||
|
@ -99,7 +99,9 @@ module.exports = (params, user) =>
|
||||
}
|
||||
|
||||
// Update
|
||||
DriveFolder.update(folder._id, folder);
|
||||
DriveFolder.update(folder._id, {
|
||||
$set: folder
|
||||
});
|
||||
|
||||
// Serialize
|
||||
const folderObj = await serialize(folder);
|
||||
|
@ -78,7 +78,9 @@ module.exports = async (params, user, _, isSecure) =>
|
||||
user.banner_id = new mongo.ObjectID(banner);
|
||||
}
|
||||
|
||||
await User.update(user._id, user);
|
||||
await User.update(user._id, {
|
||||
$set: user
|
||||
});
|
||||
|
||||
// Serialize
|
||||
const iObj = await serialize(user, user, {
|
||||
|
Loading…
Reference in New Issue
Block a user