fix: This custom route implements a solution to the bug, allowing messages and images to be sent to WhatsApp Channels.#2488
Open
luisdalmasso wants to merge 1 commit intowppconnect-team:mainfrom
Conversation
…sages and images to be sent to WhatsApp Channels.
This was referenced Mar 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Symptom: When trying to send messages to a WhatsApp channel/newsletter (in the format xxxx@newsletter) via wppconnect-server, the following error was encountered:
Chat not found in ChatStore for xxxx@newsletter
Root Cause: In wa-js v3.23.1, newsletters/channels are stored in a separate store called NewsletterStore, but are NOT registered in the ChatStore. When wpp.chat.sendTextMessage() is called, it internally executes assertFindChat(), which searches exclusively in the ChatStore. Since the newsletter is not found there, it throws the "Chat not found" error. The Solution
The custom-routes.ts file was created with custom endpoints that inject the newsletter into the ChatStore before sending the message, using Puppeteer's page.evaluate() to execute code directly in the WhatsApp Web browser context: Endpoint Method Description
/custom/:session/send-message-newsletter POST Send text to newsletter
/custom/:session/send-image-newsletter POST Send image/file to newsletter
/custom/:session/debug-wpp-newsletter GET Newsletter API diagnostics