fix: browser bug

This commit is contained in:
martin legrand
2025-04-07 14:55:41 +02:00
parent ff8fdddbdc
commit 21bf224fef
6 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ class FileFinder(Tools):
results = []
for block in blocks:
filename = block.split(":")[0]
file_path = self.recursive_search(self.current_dir, filename)
file_path = self.recursive_search(self.work_dir, filename)
if file_path is None:
results.append({"filename": filename, "error": "File not found"})
continue