diff options
Diffstat (limited to 'src/boot/after_store.js')
| -rw-r--r-- | src/boot/after_store.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/boot/after_store.js b/src/boot/after_store.js index 08c00c64..0169953b 100644 --- a/src/boot/after_store.js +++ b/src/boot/after_store.js @@ -24,10 +24,6 @@ const afterStoreSetup = ({ store, i18n }) => { store.dispatch('setInstanceOption', { name: 'bannerlimit', value: parseInt(uploadlimit.bannerlimit) }) } - if (data.nsfwCensorImage) { - store.dispatch('setInstanceOption', { name: 'nsfwCensorImage', value: data.nsfwCensorImage }) - } - if (vapidPublicKey) { store.dispatch('setInstanceOption', { name: 'vapidPublicKey', value: vapidPublicKey }) } @@ -73,7 +69,9 @@ const afterStoreSetup = ({ store, i18n }) => { var subjectLineBehavior = (config.subjectLineBehavior) var alwaysShowSubjectInput = (config.alwaysShowSubjectInput) var noAttachmentLinks = (config.noAttachmentLinks) + var nsfwCensorImage = (config.nsfwCensorImage) + store.dispatch('setInstanceOption', { name: 'nsfwCensorImage', value: nsfwCensorImage }) store.dispatch('setInstanceOption', { name: 'theme', value: theme }) store.dispatch('setInstanceOption', { name: 'background', value: background }) store.dispatch('setInstanceOption', { name: 'hidePostStats', value: hidePostStats }) |
