From a3545d12e9ace74df925b094991a2909aaf15b0e Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 6 Feb 2026 02:18:51 +0000 Subject: [PATCH] fix: Change listType from SINGLE_SELECT to PRODUCT_LIST to match pastorini Error 479 was still occurring even with legacy listMessage format. The issue is that listType must be PRODUCT_LIST (not SINGLE_SELECT) to match the biz node type="product_list" v="2" that we're injecting. This matches pastorini's working implementation exactly: - listMessage with listType: PRODUCT_LIST - biz node with type="product_list" v="2" https://claude.ai/code/session_01Vgu4xrsj8aUVCHWb4pmQPF --- src/Utils/messages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils/messages.ts b/src/Utils/messages.ts index 7592da3d..098f5118 100644 --- a/src/Utils/messages.ts +++ b/src/Utils/messages.ts @@ -1020,7 +1020,7 @@ export const generateListMessageLegacy = ( description, buttonText, footerText: footer, - listType: WAProto.Message.ListMessage.ListType.SINGLE_SELECT, + listType: WAProto.Message.ListMessage.ListType.PRODUCT_LIST, sections: listInfo.sections.map(section => ({ title: section.title, rows: section.rows.map(row => ({