Skip to content

Commit

Permalink
* Fix #46.
Browse files Browse the repository at this point in the history
  • Loading branch information
iProgramMC committed May 16, 2024
1 parent b6dd834 commit 56f8636
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/windows/MessageList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -869,10 +869,6 @@ void MessageList::RefetchMessages(Snowflake gapCulprit)
bNeedInsertNew = true;
}

if (msg.m_snowflake == 869674762446729297 || msg.m_snowflake == 869674843224829964) {
DbgPrintW("xyz");
}

if (bNeedInsertNew)
{
MessageItem mi;
Expand Down Expand Up @@ -3430,7 +3426,8 @@ bool MessageList::ShouldStartNewChain(Snowflake prevAuthor, time_t prevTime, int
item.m_msg.m_bHaveReferencedMessage ||
item.m_msg.m_type == MessageType::REPLY ||
IsActionMessage(prevType) ||
IsActionMessage(item.m_msg.m_type)
IsActionMessage(item.m_msg.m_type) ||
ShouldBeDateGap(prevTime, item.m_msg.m_dateTime)
);
}

Expand Down

0 comments on commit 56f8636

Please sign in to comment.