diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue
index 5a80db8a..7e972026 100644
--- a/src/components/attachment/attachment.vue
+++ b/src/components/attachment/attachment.vue
@@ -34,7 +34,7 @@
@click="openModal"
v-if="type === 'video' && !hidden"
:class="{'small': isSmall}"
- :href="attachment.url"
+ :href="allowPlay ? undefined : attachment.url"
>
diff --git a/static/config.json b/static/config.json
index 24e26696..aac93f70 100644
--- a/static/config.json
+++ b/static/config.json
@@ -19,5 +19,8 @@
"loginMethod": "password",
"webPushNotifications": false,
"noAttachmentLinks": false,
- "nsfwCensorImage": ""
+ "nsfwCensorImage": "",
+ "useOneClickNsfw": true,
+ "playVideosInline": false,
+ "useContainFit": false
}