Merge commit '02a56a0d0381696b0772841f49f516a7ed49bfbd' into beta

This commit is contained in:
Ali 2022-12-02 19:47:01 +04:00
commit 8e846fa83b

View File

@ -200,6 +200,12 @@ public final class EngineMessage: Equatable {
if lhs.associatedThreadInfo != rhs.associatedThreadInfo {
return false
}
if lhs.attributes.count != rhs.attributes.count {
return false
}
if lhs.stableVersion != rhs.stableVersion {
return false
}
return true
}
}