We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61e55c9 commit f9176f3Copy full SHA for f9176f3
1 file changed
AiServer.ServiceInterface/Comfy/ComfyClient.cs
@@ -191,6 +191,7 @@ public async Task<ComfyWorkflowResponse> PromptGenerationAsync(ComfyWorkflowRequ
191
var requestArgs = comfyRequest.ToObjectDictionary();
192
foreach (var entry in requestArgs)
193
{
194
+ if (entry.Value is null or "") continue;
195
workflowArgs[entry.Key.ToCamelCase()] = entry.Value;
196
}
197
0 commit comments