[API] Fix bug
This commit is contained in:
		| @@ -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, { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo