Load original message and use it for timestamps in Conversation.

This commit is contained in:
Clark
2023-06-22 18:42:56 -04:00
committed by GitHub
parent 68042fc755
commit 1037acd4a2
5 changed files with 40 additions and 17 deletions

View File

@@ -741,17 +741,6 @@ public abstract class MessageRecord extends DisplayRecord {
return originalMessageId;
}
/**
* Get the timestamp of a message, shown in the conversation. This is used
* for example when showing the conversation date separators.
*/
public long getConversationTimestamp() {
if (isEditMessage()) {
return getDateReceived();
}
return getDateSent();
}
public int getRevisionNumber() {
return revisionNumber;
}