Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/endpoints/history/message_counts.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function validateParams(modules: ModulesInject, incomingParams: MessageCo

if (!channels) return 'Missing channel';
if (timetoken && channelTimetokens) return 'timetoken and channelTimetokens are incompatible together';
if ((timetoken && channelTimetokens) && (channelTimetokens.length > 1) && (channels.length !== channelTimetokens.length)) return 'Length of channelTimetokens and channels do not match';
if ((channels && channelTimetokens) && (channelTimetokens.length > 1) && (channels.length !== channelTimetokens.length)) return 'Length of channelTimetokens and channels do not match';
if (!config.subscribeKey) return 'Missing Subscribe Key';
}

Expand Down