|
|
@ -128,8 +128,10 @@ public abstract class MessageRecord extends DisplayRecord {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public long getTimestamp() {
|
|
|
|
public long getTimestamp() {
|
|
|
|
if (isPush()) return getDateSent();
|
|
|
|
if (isPush() && getDateSent() < getDateReceived()) {
|
|
|
|
else return getDateReceived();
|
|
|
|
return getDateSent();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return getDateReceived();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public boolean isForcedSms() {
|
|
|
|
public boolean isForcedSms() {
|
|
|
|