Timothy J. Baek 1 year ago
parent
commit
5558514ff1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/apps/rag/main.py

+ 1 - 1
backend/apps/rag/main.py

@@ -453,7 +453,7 @@ def store_doc(
         if not unsanitized_filename.isascii():
             is_valid_filename = False
 
-        unvalidated_file_path  = f"{UPLOAD_DIR}/{unsanitized_filename}"
+        unvalidated_file_path = f"{UPLOAD_DIR}/{unsanitized_filename}"
         dereferenced_file_path = str(Path(unvalidated_file_path).resolve(strict=False))
         if not dereferenced_file_path.startswith(UPLOAD_DIR):
             is_valid_filename = False