diff --git a/Services/server/src/controllers/storageController.ts b/Services/server/src/controllers/storageController.ts index 5776a79..977bd71 100644 --- a/Services/server/src/controllers/storageController.ts +++ b/Services/server/src/controllers/storageController.ts @@ -272,7 +272,7 @@ export class StorageController extends Controller { } if (body.operation === "folder") return await listFolder(path, body.hidden); - if (body.operation === "file") return await listFile(path); + if (body.operation === "file") return await listFile(path, body.hidden); } /**