summary refs log tree commit diff
path: root/src/util/Database.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/Database.ts')
-rw-r--r--src/util/Database.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/util/Database.ts b/src/util/Database.ts
index 56f53f9a..2304378c 100644
--- a/src/util/Database.ts
+++ b/src/util/Database.ts
@@ -1,12 +1,12 @@
 import "./MongoBigInt";
-import mongoose, { Collection } from "mongoose";
+import mongoose, { Collection, Connection } from "mongoose";
 import { ChangeStream, ChangeEvent, Long } from "mongodb";
 import EventEmitter from "events";
 const uri = process.env.MONGO_URL || "mongodb://localhost:27017/fosscord?readPreference=secondaryPreferred";
 
 const connection = mongoose.createConnection(uri, { autoIndex: true });
 
-export default connection;
+export default <Connection>connection;
 
 export interface MongooseCache {
 	on(event: "delete", listener: (id: string) => void): this;
@@ -37,7 +37,8 @@ export class MongooseCache extends EventEmitter {
 		this.stream.on("error", console.error);
 
 		if (!this.opts.onlyEvents) {
-			this.data = await this.collection.aggregate(this.pipeline).toArray();
+			const arr = await this.collection.aggregate(this.pipeline).toArray();
+			this.data = arr.length ? arr[0] : arr;
 		}
 	}