Check if folder_name is valid instead of just throwing exception.

This commit is contained in:
comfyanonymous 2023-05-30 16:44:09 -04:00
parent 9af7033c5e
commit 2260802d90
1 changed files with 2 additions and 0 deletions

View File

@ -125,6 +125,8 @@ def filter_files_extensions(files, extensions):
def get_full_path(folder_name, filename):
global folder_names_and_paths
if folder_name not in folder_names_and_paths:
return None
folders = folder_names_and_paths[folder_name]
filename = os.path.relpath(os.path.join("/", filename), "/")
for x in folders[0]: