Bugfix: fixed a typo in filename

This commit is contained in:
Volodymyr Zuyev
2025-06-17 00:01:18 -05:00
committed by Volodymyr
parent c597164a1a
commit 99d6d374b4

View File

@@ -338,7 +338,7 @@ class ApiServersServerFilesIndexHandler(BaseApiHandler):
)
# Only try to delete files that are not nested inside of directories that will also get deleted, to not cause an error
normalized_paths = sorted([os.path.normpath(p) for p in data["filename"]])
normalized_paths = sorted([os.path.normpath(p) for p in data["filenames"]])
unique_paths = []
last_path = None
for path in normalized_paths: