aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-01-30 11:54:20 +0100
committerGitHub <noreply@github.com>2019-01-30 11:54:20 +0100
commitfda74eb9b9e6e0da4dbe222d2d9a1ceddaf60d59 (patch)
tree29b7805a7c9186b544b2b5fc82b88e0d8a2a0d43 /apps
parent95d1cf4817a8b21decbcd844bf67413572014420 (diff)
parent812567ae58b507733b0aaa0dd223af82218690fa (diff)
downloadnextcloud-server-fda74eb9b9e6e0da4dbe222d2d9a1ceddaf60d59.tar.gz
nextcloud-server-fda74eb9b9e6e0da4dbe222d2d9a1ceddaf60d59.zip
Merge pull request #13891 from nextcloud/remove-external-failure-notification
Remove warning in case of external storage error
Diffstat (limited to 'apps')
-rw-r--r--apps/files_external/js/statusmanager.js18
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();
}
});
},