Merge branch 't'

This commit is contained in:
overtake 2020-06-02 21:49:24 +03:00
commit e8b87bf61f

View File

@ -17,8 +17,12 @@ public struct WrappedMediaResourceId: Hashable {
return lhs.id.isEqual(to: rhs.id)
}
public var hashValue: Int {
return self.id.hashValue
// public var hashValue: Int {
// return self.id.hashValue
// }
public func hash(into hasher: inout Hasher) {
hasher.combine(id.hashValue)
}
}