Hi,
We are currently using Zendesk ChatSDK for our mobile applications. But we have an issue in our Android app. The issue is that the initial message sent by the user to start the chat is blacklisted by the SDK and the message does not show up again when the user closes the chat screen and then reopens. When we looked at the SDK source code, we saw a code block that blacklists the user's initial message on purpose. This behavior breaks our chat experience. We are wondering what reason led you to make this decision. Also, we are looking for ways to disable it if possible.
The following code block is in the ChatModel class. ChatSDK version is 3.3.6.
private void sendInitialMessage(String initialMessage) {
if (hasLength(initialMessage)) {
ChatLog.Message message = chatProvider.sendMessage(initialMessage);
chatLogBlacklister.blacklist(message);
}
}
These 2 screenshots may make things clear for you


Thanks in advance
Anı