From a5ab80bf02330db30da7707409164edbb77c245e Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Thu, 12 Apr 2018 06:20:53 +0900
Subject: [PATCH] oops

---
 src/models/drive-file.ts | 4 ++--
 1 file 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);