aantal mappen en layout aangepast

This commit is contained in:
kodi
2026-03-08 08:56:09 +01:00
parent 06c144d2fc
commit e10082e1bc
7 changed files with 480 additions and 226 deletions
+3 -1
View File
@@ -87,7 +87,7 @@ class FileDiscoveryService:
self,
root_id: str,
subpath: str = "",
limit: int = 500,
limit: int = 5000,
) -> dict:
root = self._get_root_by_id(root_id)
target = self._resolve_target(root["path"], subpath)
@@ -109,10 +109,12 @@ class FileDiscoveryService:
break
if not entry.is_dir():
continue
try:
relative_to_root = entry.resolve().relative_to(root["path"])
except ValueError:
continue
folders.append(
{
"name": entry.name,