Skip to content

Commit d354b0a

Browse files
committed
Fixed a bug where IG Folder was always selecting from output folder
1 parent cd99458 commit d354b0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodes/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def INPUT_TYPES(cls):
176176
CATEGORY = TREE_IO
177177

178178
def main(self, folder_parent, folder_name):
179-
parent = folder_paths.input_directory if folder_parent == "folder_parent" else folder_paths.output_directory
179+
parent = folder_paths.input_directory if folder_parent == "input folder" else folder_paths.output_directory
180180
directory = os.path.join(parent, folder_name)
181181
return (directory,)
182182

0 commit comments

Comments
 (0)