mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
Fix bug when uploading image with the same name.
This commit is contained in:
parent
d6dee8af1d
commit
8e3d1cbf3b
@ -151,6 +151,7 @@ class PromptServer():
|
|||||||
i = 1
|
i = 1
|
||||||
while os.path.exists(filepath):
|
while os.path.exists(filepath):
|
||||||
filename = f"{split[0]} ({i}){split[1]}"
|
filename = f"{split[0]} ({i}){split[1]}"
|
||||||
|
filepath = os.path.join(full_output_folder, filename)
|
||||||
i += 1
|
i += 1
|
||||||
|
|
||||||
if image_save_function is not None:
|
if image_save_function is not None:
|
||||||
|
Loading…
Reference in New Issue
Block a user