diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-10-20 13:58:01 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-03-22 06:50:45 +0100 |
commit | a100186e5e7dcbe95faa453d28b5cf0d20948639 (patch) | |
tree | afea689f2b87338975c74aabba950d85f7dca338 /apps/files_sharing/src/components/SharingInput.vue | |
parent | 5e519fe17a2d4940993f4d866dfdd68269265a12 (diff) | |
download | nextcloud-server-a100186e5e7dcbe95faa453d28b5cf0d20948639.tar.gz nextcloud-server-a100186e5e7dcbe95faa453d28b5cf0d20948639.zip |
Sharing link & mail parity
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingInput.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingInput.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingInput.vue b/apps/files_sharing/src/components/SharingInput.vue index 686e27379cc..b30301d2290 100644 --- a/apps/files_sharing/src/components/SharingInput.vue +++ b/apps/files_sharing/src/components/SharingInput.vue @@ -461,7 +461,7 @@ export default { try { let password = null - if (this.config.isPasswordForMailSharesRequired + if (this.config.enforcePasswordForPublicLink && value.shareType === this.SHARE_TYPES.SHARE_TYPE_EMAIL) { password = await GeneratePassword() } |