fix [BUG] TL matches duplicate entries #35
This commit is contained in:
parent
35e7379e2f
commit
5405b4968c
|
@ -750,7 +750,7 @@ class TetraLeagueAlphaRecord{
|
|||
}
|
||||
|
||||
@override
|
||||
bool operator ==(covariant TetraLeagueAlphaRecord other) => ownId == other.ownId;
|
||||
bool operator ==(covariant TetraLeagueAlphaRecord other) => (ownId == other.ownId) || (replayId == other.replayId);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
|
|
Loading…
Reference in New Issue