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
@ -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…
Reference in New Issue
Block a user