From 5558514ff19c088fd0c8c87205d7a89a0d115a1c Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Mon, 1 Apr 2024 15:23:12 -0700 Subject: [PATCH] fix --- backend/apps/rag/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/apps/rag/main.py b/backend/apps/rag/main.py index cf82e088..0555cc2c 100644 --- a/backend/apps/rag/main.py +++ b/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