diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-06-09 18:12:58 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-06-09 18:12:58 +0200 |
commit | e878e786e04b4c4dcf30e9355003f07592bd9b51 (patch) | |
tree | 433fea5d9bb1e4a6ca212eb8d1cc8517ad795ee6 /apps/files_sharing/js | |
parent | 6e99b0f59d3b0278c45d42dcec01ff554a89d979 (diff) | |
download | nextcloud-server-e878e786e04b4c4dcf30e9355003f07592bd9b51.tar.gz nextcloud-server-e878e786e04b4c4dcf30e9355003f07592bd9b51.zip |
Fix public upload for normal shares
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r-- | apps/files_sharing/js/public.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index bf06b2cd55b..f207eff7909 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -302,7 +302,9 @@ OCA.Sharing.PublicApp = { $('#save-button-confirm') .removeClass("icon-loading-small") .addClass("icon-confirm"); - } else { + + } + else { $('#save-button-confirm') .removeClass("icon-confirm") .addClass("icon-loading-small"); @@ -312,6 +314,7 @@ OCA.Sharing.PublicApp = { toggleLoading(); var location = window.location.protocol + '//' + window.location.host + OC.webroot; + if(remote.substr(-1) !== '/') { remote += '/' }; |