Error calling get message by id for message sent before user joins a group channel

[Problem/Question]
When adding a reaction to a message or fetching a message that was sent before a user joined the channel the following error occurs (Setting to see chat history is enabled in dashboard) :
error adding reaction ==> [SendbirdError: Invalid value: “Invalid ‘message_id’ value, cannot fetch past messages when chat-history is disabled.“.]


// If problem, please fill out the below. If question, please delete.
[SDK Version]
// What version of the SDK are you using?

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.
const params: MessageRetrievalParams = {
messageId,
channelType,
channelUrl,
includeReactions: true,
includeParentMessageInfo: true,
};

    const message = await sb.message.getMessage(params);
    const reactionResp = await channel.addReaction(message, emojiObject.key);

[Frequency]
// How frequently is this issue occurring?
All the time
[Current impact]
// How is this currently impacting your implementation?
I cannot add a reaction to previous message after I joined channel

@Michael_Quinlan,

If chat history is disabled, it means that its not intended for the user to access any messages prior to them joining. This means that they should not be able to react or fetch a message that was sent prior to them joining the room. If you want to allow a user to do this, you’ll need to enable this on the Dashboard in the settings.

Please note that this setting is not retroactive and only applies to users who join channels AFTER the setting has been enabled.