Search filters improvements

This commit is contained in:
Ilya Laktyushin
2020-09-07 15:22:35 +03:00
parent 9c52f3a9a6
commit 3fd6ee004b
42 changed files with 6399 additions and 6038 deletions

View File

@@ -156,6 +156,11 @@ public struct MessageHistoryEntryLocation: Equatable {
public let index: Int
public let count: Int
public init(index: Int, count: Int) {
self.index = index
self.count = count
}
var predecessor: MessageHistoryEntryLocation? {
if index == 0 {
return nil