fix [BUG] TL matches duplicate entries #35

This commit is contained in:
dan63047 2023-10-14 01:53:33 +03:00
parent 35e7379e2f
commit 5405b4968c
1 changed files with 1 additions and 1 deletions

View File

@ -750,7 +750,7 @@ class TetraLeagueAlphaRecord{
} }
@override @override
bool operator ==(covariant TetraLeagueAlphaRecord other) => ownId == other.ownId; bool operator ==(covariant TetraLeagueAlphaRecord other) => (ownId == other.ownId) || (replayId == other.replayId);
@override @override
String toString() { String toString() {