parent
40332f57ad
commit
53e9b2ad1b
1 changed files with 4 additions and 2 deletions
|
@ -128,8 +128,10 @@ public abstract class MessageRecord extends DisplayRecord {
|
|||
}
|
||||
|
||||
public long getTimestamp() {
|
||||
if (isPush()) return getDateSent();
|
||||
else return getDateReceived();
|
||||
if (isPush() && getDateSent() < getDateReceived()) {
|
||||
return getDateSent();
|
||||
}
|
||||
return getDateReceived();
|
||||
}
|
||||
|
||||
public boolean isForcedSms() {
|
||||
|
|
Loading…
Add table
Reference in a new issue