Reduce the number of unnecessary home page reloads

This commit is contained in:
Andy Uhnak
2022-04-04 11:38:27 +01:00
parent 3f34fd655a
commit e817286424
7 changed files with 99 additions and 97 deletions
@@ -75,4 +75,11 @@ import Foundation
}
return item.key
}
override func isEqual(_ object: Any?) -> Bool {
guard let other = object as? RecentsDataSourceSections else {
return false
}
return sections == other.sections
}
}