diff --git a/apps/files_sharing/src/views/SharingDetailsTab.vue b/apps/files_sharing/src/views/SharingDetailsTab.vue
index 8a77100bac1..4681e59391d 100644
--- a/apps/files_sharing/src/views/SharingDetailsTab.vue
+++ b/apps/files_sharing/src/views/SharingDetailsTab.vue
@@ -120,6 +120,11 @@
{{ t('files_sharing', 'Password expired') }}
+
+ {{ t('files_sharing', 'Video verification') }}
+
{{ isExpiryDateEnforced
? t('files_sharing', 'Expiration date (enforced)')
@@ -140,11 +145,6 @@
@update:checked="queueUpdate('hideDownload')">
{{ t('files_sharing', 'Hide download') }}
-
- {{ t('files_sharing', 'Video verification') }}
-
{{ t('files_sharing', 'Allow download') }}
@@ -618,8 +618,8 @@ export default {
return false
}
- // Anything else should be fine
- return true
+ // Is Talk enabled?
+ return OC.appswebroots.spreed !== undefined
},
canChangeHideDownload() {
const hasDisabledDownload = (shareAttribute) => shareAttribute.key === 'download' && shareAttribute.scope === 'permissions' && shareAttribute.enabled === false