Populate AUTH_TOKEN_COMFY_ORG hidden input (#7709)

This commit is contained in:
Chenlei Hu 2025-04-21 14:39:45 -04:00 committed by GitHub
parent 11b72c9c55
commit b6fd3ffd10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -144,6 +144,8 @@ def get_input_data(inputs, class_def, unique_id, outputs=None, dynprompt=None, e
input_data_all[x] = [extra_data.get('extra_pnginfo', None)] input_data_all[x] = [extra_data.get('extra_pnginfo', None)]
if h[x] == "UNIQUE_ID": if h[x] == "UNIQUE_ID":
input_data_all[x] = [unique_id] input_data_all[x] = [unique_id]
if h[x] == "AUTH_TOKEN_COMFY_ORG":
input_data_all[x] = [extra_data.get("auth_token_comfy_org", None)]
return input_data_all, missing_keys return input_data_all, missing_keys
map_node_over_list = None #Don't hook this please map_node_over_list = None #Don't hook this please