exclude accounting info to save traffic

This commit is contained in:
dcore94 2024-05-31 15:25:20 +02:00
parent 47f83901c1
commit 16c8a6068b
1 changed files with 1 additions and 1 deletions

View File

@ -890,7 +890,7 @@ class D4SWorkspace {
* @throws the error as string, if occurred
*/
listFolder(folderId, extraHeaders) {
const uri = "/items/" + folderId + "/children";
const uri = "/items/" + folderId + "/children?exclude=hl:accounting";
return this.#callWorkspace("GET", uri, null, null, extraHeaders)
.then(blob => {
return blob.text().then(text => {