diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-07-23 09:39:26 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-07-23 09:39:26 +0200 |
commit | d93535b5cb0cb9339b336162eb22f9cc81bf6d1a (patch) | |
tree | 687daf5d8084316f02a9119d3c7a9fafe62f52fa /core/js/share.js | |
parent | d20e2002a6de9d472d29fb190867970a6f6b3b22 (diff) | |
download | nextcloud-server-d93535b5cb0cb9339b336162eb22f9cc81bf6d1a.tar.gz nextcloud-server-d93535b5cb0cb9339b336162eb22f9cc81bf6d1a.zip |
Adding error handling in case setting the password fails
Diffstat (limited to 'core/js/share.js')
-rw-r--r-- | core/js/share.js | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/core/js/share.js b/core/js/share.js index c0bc2c8ab80..d730d3bbf6e 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -308,7 +308,7 @@ OC.Share={ return data; }, - share:function(itemType, itemSource, shareType, shareWith, permissions, itemSourceName, expirationDate, callback) { + share:function(itemType, itemSource, shareType, shareWith, permissions, itemSourceName, expirationDate, callback, errorCallback) { // Add a fallback for old share() calls without expirationDate. // We should remove this in a later version, // after the Apps have been updated. @@ -339,12 +339,15 @@ OC.Share={ callback(result.data); } } else { - if (result.data && result.data.message) { - var msg = result.data.message; - } else { + if (_.isUndefined(errorCallback)) { var msg = t('core', 'Error'); + if (result.data && result.data.message) { + msg = result.data.message; + } + OC.dialogs.alert(msg, t('core', 'Error while sharing')); + } else { + errorCallback(result); } - OC.dialogs.alert(msg, t('core', 'Error while sharing')); } } ); @@ -1178,6 +1181,10 @@ $(document).ready(function() { OC.Share.updateIcon(itemType, itemSource); } $('#dropdown').trigger(new $.Event('sharesChanged', {shares: OC.Share.currentShares})); + }, function(result) { + $loading.addClass('hidden'); + linkPassText.val(''); + linkPassText.attr('placeholder', result.data.message); }); if (expireDateString !== '') { |