Fixes profile equality check

This commit is contained in:
Sorunome 2020-05-26 06:40:13 +00:00 committed by Christian Pauly
parent 7dba429a7b
commit 8a289941eb

View file

@ -19,5 +19,7 @@ class Profile {
@override
bool operator ==(dynamic other) =>
avatarUrl == other.avatarUrl && displayname == other.displayname;
(other is Profile) &&
avatarUrl == other.avatarUrl &&
displayname == other.displayname;
}