summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-02-07 10:15:27 +0100
committerMorris Jobke <hey@morrisjobke.de>2019-02-07 10:15:29 +0100
commitca9b9865fff56ce113e78c46ad0af8c612b725e3 (patch)
treecf6383590b4443f727ef4e97f88649987351ebea /apps/files_external
parent3e72cc16e74f941e465c2f6132e206355440190f (diff)
downloadnextcloud-server-ca9b9865fff56ce113e78c46ad0af8c612b725e3.tar.gz
nextcloud-server-ca9b9865fff56ce113e78c46ad0af8c612b725e3.zip
Reintroduce status check for external storages
Fixes #14022 Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/js/statusmanager.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/files_external/js/statusmanager.js b/apps/files_external/js/statusmanager.js
index 7a3ecda76b1..bd423192521 100644
--- a/apps/files_external/js/statusmanager.js
+++ b/apps/files_external/js/statusmanager.js
@@ -288,6 +288,17 @@ OCA.Files_External.StatusManager = {
};
ajaxQueue.push(queueElement);
});
+
+ var rolQueue = new OCA.Files_External.StatusManager.RollingQueue(ajaxQueue, 4, function () {
+ if (!self.notificationHasShown) {
+ $.each(self.mountStatus, function (key, value) {
+ if (value.status === 1) {
+ self.notificationHasShown = true;
+ }
+ });
+ }
+ });
+ rolQueue.runQueue();
}
});
},