mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2025-09-07 00:44:34 +00:00
Bugfix: fixed a typo in filename
This commit is contained in:

committed by
Volodymyr

parent
c597164a1a
commit
99d6d374b4
@@ -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:
|
||||
|
Reference in New Issue
Block a user