diff options
author | Joas Schilling <coding@schilljs.com> | 2020-08-20 12:03:46 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2020-08-20 13:12:06 +0000 |
commit | 1da890150d11d892affdf6a1c250bfba1ef9945a (patch) | |
tree | 294c9e24b0e5003a2ce174a491e6ea26cb90346a /apps/files_sharing/src/components/SharingEntryLink.vue | |
parent | af3a59fab5798918697d25616ccdd929bc10a7fa (diff) | |
download | nextcloud-server-1da890150d11d892affdf6a1c250bfba1ef9945a.tar.gz nextcloud-server-1da890150d11d892affdf6a1c250bfba1ef9945a.zip |
Only copy the link when updating a share or no password was forced
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntryLink.vue')
-rw-r--r-- | apps/files_sharing/src/components/SharingEntryLink.vue | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index e81482e43bd..3ba4e59867e 100644 --- a/apps/files_sharing/src/components/SharingEntryLink.vue +++ b/apps/files_sharing/src/components/SharingEntryLink.vue @@ -708,7 +708,11 @@ export default { // Execute the copy link method // freshly created share component // ! somehow does not works on firefox ! - component.copyLink() + if (update || !this.config.enforcePasswordForPublicLink) { + // Only copy the link when the password was not forced, + // otherwise the user needs to copy/paste the password before finishing the share. + component.copyLink() + } } catch ({ response }) { const message = response.data.ocs.meta.message |