Show last folder sync time in nav menu

This commit is contained in:
M66B
2022-05-02 17:51:51 +02:00
parent 7b21f6a24e
commit ddb75168ec
5 changed files with 19 additions and 60 deletions

View File

@@ -34,6 +34,7 @@ public class TupleAccountFolder extends EntityAccount {
public boolean folderSync;
public String folderState;
public String folderSyncState;
public Long folderLastSync;
public int executing;
public int messages;
public int unseen;
@@ -73,6 +74,7 @@ public class TupleAccountFolder extends EntityAccount {
this.folderSync == other.folderSync &&
Objects.equals(this.folderState, other.folderState) &&
Objects.equals(this.folderSyncState, other.folderSyncState) &&
Objects.equals(this.folderLastSync, other.folderLastSync) &&
this.executing == other.executing &&
this.messages == other.messages &&
this.unseen == other.unseen);