mirror of
https://github.com/spacebarchat/server.git
synced 2026-05-24 21:15:28 +00:00
🐛 fix config: don't use mongodb change streams
This commit is contained in:
+4
-4
@@ -4,15 +4,15 @@ import db, { MongooseCache } from "./Database";
|
||||
import { Snowflake } from "./Snowflake";
|
||||
import crypto from "crypto";
|
||||
|
||||
var Config = new MongooseCache(db.collection("config"), [], { onlyEvents: false, array: false });
|
||||
var config: any;
|
||||
|
||||
export default {
|
||||
init: async function init(defaultOpts: any = DefaultOptions) {
|
||||
await Config.init();
|
||||
return this.set((Config.data || {}).merge(defaultOpts));
|
||||
config = await db.collection("config").findOne({});
|
||||
return this.set((config || {}).merge(defaultOpts));
|
||||
},
|
||||
get: function get() {
|
||||
return <DefaultOptions>Config.data;
|
||||
return config as DefaultOptions;
|
||||
},
|
||||
set: function set(val: any) {
|
||||
return db.collection("config").updateOne({}, { $set: val }, { upsert: true });
|
||||
|
||||
Reference in New Issue
Block a user