diff options
author | Julien Veyssier <eneiluj@posteo.net> | 2022-07-05 13:43:58 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-07-05 16:39:48 +0200 |
commit | bbe3b03aed0986836e9aa9e023ad6739689ecb8c (patch) | |
tree | 17bffff53ce144c9c3dae3ea213eb6933ffba35b /apps/files/js/files.js | |
parent | 43efbcff74d1bced3d24742d9879804e34007365 (diff) | |
download | nextcloud-server-bbe3b03aed0986836e9aa9e023ad6739689ecb8c.tar.gz nextcloud-server-bbe3b03aed0986836e9aa9e023ad6739689ecb8c.zip |
add missing GET param to getstoragestats url
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
(cherry picked from commit ca6a7245032e87f6d7f65c8e796cc0f176659677)
Diffstat (limited to 'apps/files/js/files.js')
-rw-r--r-- | apps/files/js/files.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index e02a69cd13a..8645719f82b 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; |