mirror of
https://github.com/nextcloud/server.git
synced 2026-06-05 23:06:48 -04:00
Merge pull request #14078 from nextcloud/backport/14076/master
[master] Make external storages browsable again in the web UI
This commit is contained in:
commit
b69b17f29f
1 changed files with 11 additions and 0 deletions
|
|
@ -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();
|
||||
}
|
||||
});
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue