diff options
Diffstat (limited to 'storage-backend/index.php')
-rw-r--r-- | storage-backend/index.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage-backend/index.php b/storage-backend/index.php index 77a38f0..3dd9a8f 100644 --- a/storage-backend/index.php +++ b/storage-backend/index.php @@ -80,7 +80,8 @@ switch ($method) { case 'list': $limit = getOptionalPostParameter('limit', $config['list_default_limit']); $offset = getOptionalPostParameter('offset', 0); - $files = listFiles($userJid, $limit, $offset); + $descending = getOptionalPostParameter('descending', 'false') === 'true'; + $files = listFiles($userJid, $limit, $offset, $descending); $result = ['list' => $files]; break; case 'upload': |