aboutsummaryrefslogtreecommitdiff
path: root/src/components/attachment/attachment.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2019-01-23 00:10:59 +0300
committerHenry Jameson <me@hjkos.com>2019-01-23 00:15:24 +0300
commitac64e908987ef07e49e4ed26b7e0574e67c01856 (patch)
treed8d8a09780746c2b490000590492f1710110d531 /src/components/attachment/attachment.js
parentc8caa477d7f9d6b793ba0f75c736510f47298014 (diff)
fix custom nsfwCensorImage not working
Diffstat (limited to 'src/components/attachment/attachment.js')
-rw-r--r--src/components/attachment/attachment.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/attachment/attachment.js b/src/components/attachment/attachment.js
index 18a03770..9212b74b 100644
--- a/src/components/attachment/attachment.js
+++ b/src/components/attachment/attachment.js
@@ -11,7 +11,7 @@ const Attachment = {
],
data () {
return {
- nsfwImage: this.$store.state.config.nsfwCensorImage || nsfwImage,
+ nsfwImage: this.$store.state.instance.nsfwCensorImage || nsfwImage,
hideNsfwLocal: this.$store.state.config.hideNsfw,
preloadImage: this.$store.state.config.preloadImage,
loopVideo: this.$store.state.config.loopVideo,