summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-31 20:32:37 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-31 20:32:37 +0200
commit24a7accc16ec2f999e19ec57e59b1e94c457e1f0 (patch)
tree351d18193cfe9e72c41774fa07f74e682386dfa6 /src
parent1.3.15 (diff)
downloadserver-24a7accc16ec2f999e19ec57e59b1e94c457e1f0.tar.xz
:bug: fix config
Diffstat (limited to 'src')
-rw-r--r--src/util/Config.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Config.ts b/src/util/Config.ts
index ca6daa16..f125bd18 100644
--- a/src/util/Config.ts
+++ b/src/util/Config.ts
@@ -205,7 +205,7 @@ export const DefaultOptions: DefaultOptions = {
 	},
 };
 
-export const ConfigSchema = new Schema(Object);
+export const ConfigSchema = new Schema({}, { strict: false });
 
 export interface DefaultOptionsDocument extends DefaultOptions, Document {}