diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-01-29 16:23:04 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-01-29 16:23:04 +0100 |
commit | 812567ae58b507733b0aaa0dd223af82218690fa (patch) | |
tree | 61a395cd56995f00058cc33ebffe5802d480e4f9 /apps/files_external/js | |
parent | 198a45ff75c64d38c1ccb6bd903ee55b446177b3 (diff) | |
download | nextcloud-server-812567ae58b507733b0aaa0dd223af82218690fa.tar.gz nextcloud-server-812567ae58b507733b0aaa0dd223af82218690fa.zip |
Remove warning in case of external storage error
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_external/js')
-rw-r--r-- | apps/files_external/js/statusmanager.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/apps/files_external/js/statusmanager.js b/apps/files_external/js/statusmanager.js index b4e89bd6232..7a3ecda76b1 100644 --- a/apps/files_external/js/statusmanager.js +++ b/apps/files_external/js/statusmanager.js @@ -288,24 +288,6 @@ OCA.Files_External.StatusManager = { }; ajaxQueue.push(queueElement); }); - - var rolQueue = new OCA.Files_External.StatusManager.RollingQueue(ajaxQueue, 4, function () { - if (!self.notificationHasShown) { - var showNotification = false; - $.each(self.mountStatus, function (key, value) { - if (value.status === 1) { - self.notificationHasShown = true; - showNotification = true; - } - }); - if (showNotification) { - OC.Notification.show(t('files_external', 'Some of the configured external mount points are not connected. Please click on the red row(s) for more information'), - {type: 'error'} - ); - } - } - }); - rolQueue.runQueue(); } }); }, |