From b8f6784911c2cc15fc4d1ae592b8dee0d0dbc4ed Mon Sep 17 00:00:00 2001 From: Oj Date: Fri, 22 Apr 2022 18:21:26 +0100 Subject: [PATCH] [AppSettings] Fix erroring with stripped builds --- src/appSettings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/appSettings.js b/src/appSettings.js index 4dbba6b..1579295 100644 --- a/src/appSettings.js +++ b/src/appSettings.js @@ -11,7 +11,7 @@ class Settings { // Heavily based on original for compat, but simplified and twe Object.assign(this, { path, mod: this.getMod() - }) + }); log('Settings', this.path, this.store); }