diff --git a/apps/files_sharing/js/dist/files_sharing_tab.js b/apps/files_sharing/js/dist/files_sharing_tab.js index d052c4ec6a851ad466d3f8cf412f88b57410bfa6..ae23ffb93e71ac23d689e8d33cbb200fc4f3f509 100644 Binary files a/apps/files_sharing/js/dist/files_sharing_tab.js and b/apps/files_sharing/js/dist/files_sharing_tab.js differ diff --git a/apps/files_sharing/js/dist/files_sharing_tab.js.map b/apps/files_sharing/js/dist/files_sharing_tab.js.map index fde9f1543a723831630470d6c7829691160aa20e..c27e7ceac1e6fbb9633a1b280d0fb3f131a09030 100644 Binary files a/apps/files_sharing/js/dist/files_sharing_tab.js.map and b/apps/files_sharing/js/dist/files_sharing_tab.js.map differ diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue index e81482e43bd76981e4f74fbde551c92ccda8fb80..3ba4e59867ed099bfc009af730fe76f1841210b3 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