Fixed accounts not updating

This commit is contained in:
M66B 2019-01-23 12:56:09 +00:00
parent fc7f893724
commit 0bb866ab90
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ public class EntityAccount {
(this.created == null ? other.created == null : this.created.equals(other.created)) &&
(this.tbd == null ? other.tbd == null : this.tbd.equals(other.tbd)) &&
(this.state == null ? other.state == null : this.state.equals(other.state)) &&
(this.error == null ? other.error == null : this.error.equals(other.error)) ||
(this.error == null ? other.error == null : this.error.equals(other.error)) &&
(this.last_connected == null ? other.last_connected == null : this.last_connected.equals(other.last_connected)));
} else
return false;