Fix bug
SEE: https://github.com/mongodb/node-mongodb-native/blob/3.0.0/CHANGES_3.0.0.md
This commit is contained in:
		
							parent
							
								
									59c64ba7d9
								
							
						
					
					
						commit
						deb86bf6e5
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -24,9 +24,9 @@ const nativeDbConn = async (): Promise<mongodb.Db> => { | |||
| 	if (mdb) return mdb; | ||||
| 
 | ||||
| 	const db = await ((): Promise<mongodb.Db> => new Promise((resolve, reject) => { | ||||
| 		mongodb.MongoClient.connect(uri, (e, db) => { | ||||
| 		(mongodb as any).MongoClient.connect(uri, (e, client) => { | ||||
| 			if (e) return reject(e); | ||||
| 			resolve(db); | ||||
| 			resolve(client.db(config.mongodb.db)); | ||||
| 		}); | ||||
| 	}))(); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue