Only indicate active when account is online and connected

This commit is contained in:
Arne 2024-10-24 15:34:34 +02:00
parent fe5b9a5624
commit aa39942354

View file

@ -642,7 +642,7 @@ public class Contact implements ListItem, Blockable {
}
public boolean isActive() {
return this.mActive;
return this.mActive && account.isOnlineAndConnected();
}
public boolean setLastseen(long timestamp) {