From c38d41576539efb2df420cb40635a93815edcdd3 Mon Sep 17 00:00:00 2001 From: Alexis Rolland Date: Wed, 13 May 2026 17:43:12 +0800 Subject: [PATCH] Fix copy paste issue --- comfy_extras/nodes_audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_extras/nodes_audio.py b/comfy_extras/nodes_audio.py index 2fb495666..a0829cd91 100644 --- a/comfy_extras/nodes_audio.py +++ b/comfy_extras/nodes_audio.py @@ -279,7 +279,7 @@ class SaveAudioAdvanced(IO.ComfyNode): if quality: ui=UI.AudioSaveHelper.get_save_audio_ui(audio, filename_prefix=filename_prefix, cls=cls, format=file_format, quality=quality) else: - ui=UI.AudioSaveHelper.get_save_audio_ui(audio, filename_prefix=filename_prefix, cls=cls, format=file_format, quality=quality) + ui=UI.AudioSaveHelper.get_save_audio_ui(audio, filename_prefix=filename_prefix, cls=cls, format=file_format) return IO.NodeOutput(ui=ui)