Skip to content

Commit

Permalink
Regression: Fix wrong message grouping inside threads (#18039)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored Jun 25, 2020
1 parent 69668d6 commit 49183a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/ui-message/client/message.js
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ const isSequential = (currentNode, previousNode, forceDate, period, showDateSepa
return false;
}

if (!shouldCollapseReplies && currentDataset.tmid) {
if (shouldCollapseReplies && currentDataset.tmid) {
return previousDataset.id === currentDataset.tmid || previousDataset.tmid === currentDataset.tmid;
}

Expand Down

0 comments on commit 49183a8

Please sign in to comment.