kopia lustrzana https://github.com/ryukoposting/Signal-Android
Do not show sent checkmark for verification status changes
Fixes #6743 Closes #7041 // FREEBIEfork-5.53.8
rodzic
0ab9b56a18
commit
fdd070c1dd
|
@ -207,7 +207,7 @@ public class ConversationListItem extends RelativeLayout
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setStatusIcons(ThreadRecord thread) {
|
private void setStatusIcons(ThreadRecord thread) {
|
||||||
if (!thread.isOutgoing() || thread.isOutgoingCall()) {
|
if (!thread.isOutgoing() || thread.isOutgoingCall() || thread.isVerificationStatusChange()) {
|
||||||
deliveryStatusIndicator.setNone();
|
deliveryStatusIndicator.setNone();
|
||||||
alertView.setNone();
|
alertView.setNone();
|
||||||
} else if (thread.isFailed()) {
|
} else if (thread.isFailed()) {
|
||||||
|
|
|
@ -144,6 +144,10 @@ public abstract class DisplayRecord {
|
||||||
return SmsDatabase.Types.isMissedCall(type);
|
return SmsDatabase.Types.isMissedCall(type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isVerificationStatusChange() {
|
||||||
|
return SmsDatabase.Types.isIdentityDefault(type) || SmsDatabase.Types.isIdentityVerified(type);
|
||||||
|
}
|
||||||
|
|
||||||
public int getDeliveryStatus() {
|
public int getDeliveryStatus() {
|
||||||
return deliveryStatus;
|
return deliveryStatus;
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue