diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-01-28 00:31:37 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-01-28 00:31:37 +0100 |
commit | 87b39e8f03913f6e571c526167c18f0be0021c41 (patch) | |
tree | a190a15c3549c53dcc263ccd41334507d9865caa /apps/files_sharing/js | |
parent | 3fa6e0f4dca7f477e93b10287f7de5cc75d39275 (diff) | |
parent | 5376b0b123873269a92d9aa45f6233c48c2720df (diff) | |
download | nextcloud-server-87b39e8f03913f6e571c526167c18f0be0021c41.tar.gz nextcloud-server-87b39e8f03913f6e571c526167c18f0be0021c41.zip |
Merge pull request #13525 from owncloud/s2s-fixscanfileforbrokenstorage
Catch storage exception in scanner for remote shares
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r-- | apps/files_sharing/js/external.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/external.js b/apps/files_sharing/js/external.js index a4bd3b45075..f658de307ab 100644 --- a/apps/files_sharing/js/external.js +++ b/apps/files_sharing/js/external.js @@ -95,7 +95,7 @@ name: share.name, password: password}, function(result) { if (result.status === 'error') { - OC.Notification.show(result.data.message); + OC.Notification.showTemporary(result.data.message); } else { fileList.reload(); } |