diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-01-21 11:26:36 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-01-21 11:26:36 +0100 |
commit | 23ea45760f536cb362f7019c4aeac8d51aea34ad (patch) | |
tree | 09bb631ac6636f8209db11df80e417db9e3ada46 /apps/files_sharing | |
parent | b8ab21d3ad7bc65fd4a1c915cea7f0954f5a4548 (diff) | |
download | nextcloud-server-23ea45760f536cb362f7019c4aeac8d51aea34ad.tar.gz nextcloud-server-23ea45760f536cb362f7019c4aeac8d51aea34ad.zip |
External share dialog must properly read entered password
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/js/external.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_sharing/js/external.js b/apps/files_sharing/js/external.js index aeb4b2461f8..97ff5661e26 100644 --- a/apps/files_sharing/js/external.js +++ b/apps/files_sharing/js/external.js @@ -44,7 +44,8 @@ {name: name, owner: owner, remote: remoteClean} ), t('files_sharing','Remote share'), - function (result) { + function (result, password) { + share.password = password; callback(result, share); }, true, |