fix(healthcheck-survey-bot): IF processId existsの参照バグを修正
HEALTHCHECK_SITE_ID取得(Data Table Get)の直後で$json.processIdを直接参照
していたため、上流フィールドが置き換えられ常にundefinedと評価され、
Process実行分岐が発火しない不具合を修正。他ノードと同様に
$('Execute Workflow Trigger').item.json.processIdを参照するよう変更し、
n8n(id: XRqcykbG2LuAjGG2)へ再デプロイ済み。
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
90d057aac9
commit
4c11e4b868
@ -124,7 +124,7 @@
|
|||||||
"conditions": [
|
"conditions": [
|
||||||
{
|
{
|
||||||
"id": "cond-processid-truthy",
|
"id": "cond-processid-truthy",
|
||||||
"leftValue": "={{ !!$json.processId }}",
|
"leftValue": "={{ !!$('Execute Workflow Trigger').item.json.processId }}",
|
||||||
"rightValue": true,
|
"rightValue": true,
|
||||||
"operator": {
|
"operator": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user