Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Veyssier <eneiluj@posteo.net>2022-07-05 14:43:58 +0300
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-07-05 18:55:03 +0300
commite6ee00cd40da6ae9bb07e4bccfda3eae2053f492 (patch)
tree6de82d529e72cef031c22fea2ac403c794642f93
parent6ffe042d01ebd76ef3dfbed55772e5983d21d0c3 (diff)
add missing GET param to getstoragestats url
Signed-off-by: Julien Veyssier <eneiluj@posteo.net> (cherry picked from commit ca6a7245032e87f6d7f65c8e796cc0f176659677)
-rw-r--r--apps/files/js/files.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index ec306232193..7d17be21817 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -25,7 +25,7 @@
state.call.abort();
}
state.dir = currentDir;
- state.call = $.getJSON(OC.generateUrl('apps/files/ajax/getstoragestats', {
+ state.call = $.getJSON(OC.generateUrl('apps/files/ajax/getstoragestats?dir={dir}', {
dir: currentDir,
}), function(response) {
state.dir = null;