diff options
| author | Henry Jameson <me@hjkos.com> | 2018-08-13 16:17:00 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-08-13 16:17:00 +0300 |
| commit | 18117c3bfa4cae9542e49222aad058aa52929f18 (patch) | |
| tree | 9c51cf807111762eab760bed2d9b37408c836ba9 /src/main.js | |
| parent | d417cb35bbd2a7603c5c655aa76d3df13a6f92ae (diff) | |
storing entire config instead of each separate thing of it, so that future
options won't be lost during reloads because developer forgot to update that
list of settings to be persisted
Diffstat (limited to 'src/main.js')
| -rw-r--r-- | src/main.js | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/main.js b/src/main.js index cb53edd3..50e5ea8d 100644 --- a/src/main.js +++ b/src/main.js @@ -45,15 +45,7 @@ Vue.use(VueChatScroll) const persistedStateOptions = { paths: [ - 'config.hideAttachments', - 'config.hideAttachmentsInConv', - 'config.hideNsfw', - 'config.autoLoad', - 'config.hoverPreview', - 'config.streaming', - 'config.muteWords', - 'config.customTheme', - 'config.highlight', + 'config', 'users.lastLoginName' ] } |
