forked from FoundKeyGang/FoundKey
oops
This commit is contained in:
parent
3ffae40085
commit
a5ab80bf02
1 changed files with 2 additions and 2 deletions
|
@ -114,13 +114,13 @@ export const pack = (
|
||||||
let _file: any;
|
let _file: any;
|
||||||
|
|
||||||
// Populate the file if 'file' is ID
|
// Populate the file if 'file' is ID
|
||||||
if (mongodb.ObjectID.prototype.isPrototypeOf(file)) {
|
if (mongo.ObjectID.prototype.isPrototypeOf(file)) {
|
||||||
_file = await DriveFile.findOne({
|
_file = await DriveFile.findOne({
|
||||||
_id: file
|
_id: file
|
||||||
});
|
});
|
||||||
} else if (typeof file === 'string') {
|
} else if (typeof file === 'string') {
|
||||||
_file = await DriveFile.findOne({
|
_file = await DriveFile.findOne({
|
||||||
_id: new mongodb.ObjectID(file)
|
_id: new mongo.ObjectID(file)
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
_file = deepcopy(file);
|
_file = deepcopy(file);
|
||||||
|
|
Loading…
Reference in a new issue