From ec177f2ca36949245c2c0d926392ecb069519ad3 Mon Sep 17 00:00:00 2001 From: ChrisColeTech Date: Mon, 19 Aug 2024 18:38:18 -0400 Subject: [PATCH] Update bulk_enhance_helpers.py --- modules/bulk_enhance_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bulk_enhance_helpers.py b/modules/bulk_enhance_helpers.py index 39f140e6..37e47ffd 100644 --- a/modules/bulk_enhance_helpers.py +++ b/modules/bulk_enhance_helpers.py @@ -78,7 +78,7 @@ def on_file_change(files, data_type): def on_input_change(input_path, file_explorer): if input_path: # Verify with normalised version of path - input_path = os.path.normpath(input_path) + input_path = os.path.normpath(os.path.realpath(input_path)) if os.path.isdir(input_path): # Return an empty list if input_path is a directory