Fix updating nav account/folder state

This commit is contained in:
M66B
2019-07-22 13:25:03 +02:00
parent 7f9b4fc2b5
commit 816ab11ef9
2 changed files with 3 additions and 1 deletions

View File

@@ -195,7 +195,8 @@ public class AdapterNavAccount extends RecyclerView.Adapter<AdapterNavAccount.Vi
return Objects.equals(a1.name, a2.name) &&
Objects.equals(a1.color, a2.color) &&
a1.unseen == a2.unseen &&
Objects.equals(a1.state, a2.state);
Objects.equals(a1.state, a2.state) &&
Objects.equals(a1.last_connected, a2.last_connected);
}
}