diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2017-04-24 15:26:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-24 15:26:52 +0200 |
commit | 363c289d25ad8b84b3feffa87f6c90ba949691fd (patch) | |
tree | f94ee57e6e3af583e3cc1c546b1fb348432d345c | |
parent | c5617f4e8a7c2a9005165fbfb1f260ca4266410d (diff) | |
parent | 7a81d46fcbf64ccf7bab95768d3a6ea01a1c0307 (diff) | |
download | nextcloud-server-363c289d25ad8b84b3feffa87f6c90ba949691fd.tar.gz nextcloud-server-363c289d25ad8b84b3feffa87f6c90ba949691fd.zip |
Merge pull request #4468 from nextcloud/fix_link_password
Fix link password toggle
-rw-r--r-- | core/js/shareitemmodel.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/shareitemmodel.js b/core/js/shareitemmodel.js index bff006f7ef3..bc3ea88aa56 100644 --- a/core/js/shareitemmodel.js +++ b/core/js/shareitemmodel.js @@ -802,7 +802,7 @@ isLinkShare: true, id: share.id, token: share.token, - password: share.password, + password: share.share_with, link: link, permissions: share.permissions, // currently expiration is only effective for link shares. |