summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/models/drive-file.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/drive-file.ts b/src/models/drive-file.ts
index ff31ba05dd..80fe8e0300 100644
--- a/src/models/drive-file.ts
+++ b/src/models/drive-file.ts
@@ -114,13 +114,13 @@ export const pack = (
let _file: any;
// Populate the file if 'file' is ID
- if (mongodb.ObjectID.prototype.isPrototypeOf(file)) {
+ if (mongo.ObjectID.prototype.isPrototypeOf(file)) {
_file = await DriveFile.findOne({
_id: file
});
} else if (typeof file === 'string') {
_file = await DriveFile.findOne({
- _id: new mongodb.ObjectID(file)
+ _id: new mongo.ObjectID(file)
});
} else {
_file = deepcopy(file);