Small improvement

This commit is contained in:
M66B 2021-06-05 11:07:00 +02:00
parent 3f4c9d6625
commit b7cdf5a6e1
1 changed files with 3 additions and 1 deletions

View File

@ -380,7 +380,9 @@ public class EntityAccount extends EntityOrder implements Serializable {
Objects.equals(this.error, other.error) &&
Objects.equals(this.last_connected, other.last_connected) &&
Objects.equals(this.backoff_until, other.backoff_until) &&
Objects.equals(this.max_size, other.max_size));
Objects.equals(this.max_size, other.max_size) &&
Objects.equals(this.capability_idle, other.capability_idle) &&
Objects.equals(this.capability_utf8, other.capability_utf8));
} else
return false;
}