summaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/common/add-file-to-drive.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/api/common/add-file-to-drive.ts b/src/api/common/add-file-to-drive.ts
index 376c470e93..1f882389ac 100644
--- a/src/api/common/add-file-to-drive.ts
+++ b/src/api/common/add-file-to-drive.ts
@@ -81,9 +81,7 @@ export default (
// Check if there is a file with the same hash
const much = await DriveFile.findOne({
md5: hash,
- metadata: {
- user_id: user._id
- }
+ 'metadata.user_id': user._id
});
if (much !== null) {
@@ -97,7 +95,7 @@ export default (
// Calculate drive usage
const usage = ((await DriveFile
.aggregate([
- { $match: { metadata: { user_id: user._id } } },
+ { $match: { 'metadata.user_id': user._id } },
{ $project: {
length: true
}},