From a4062c3c681e52b5d2941d63a41f3084f0fedefe Mon Sep 17 00:00:00 2001 From: Mikhail Filimonov Date: Thu, 15 Aug 2024 13:29:31 -0300 Subject: [PATCH] macos related --- .../Sources/MessageHistoryViewState.swift | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/submodules/Postbox/Sources/MessageHistoryViewState.swift b/submodules/Postbox/Sources/MessageHistoryViewState.swift index c2812171f9..1449e611ea 100644 --- a/submodules/Postbox/Sources/MessageHistoryViewState.swift +++ b/submodules/Postbox/Sources/MessageHistoryViewState.swift @@ -969,7 +969,7 @@ struct OrderedHistoryViewEntries { } } - #if DEBUG + #if DEBUG && TARGET_OS_IOS for entry in self.lowerOrAtAnchor { assert(self.anchor.isEqualOrGreater(than: entry.index, peerId: self.spacePeerId, namespace: self.spaceNamespace)) } @@ -1008,7 +1008,7 @@ struct OrderedHistoryViewEntries { } } - #if DEBUG + #if DEBUG && TARGET_OS_IOS for entry in self.lowerOrAtAnchor { assert(self.anchor.isEqualOrGreater(than: entry.index, peerId: self.spacePeerId, namespace: self.spaceNamespace)) } @@ -1047,7 +1047,7 @@ struct OrderedHistoryViewEntries { } } - #if DEBUG + #if DEBUG && TARGET_OS_IOS for entry in self.lowerOrAtAnchor { assert(self.anchor.isEqualOrGreater(than: entry.index, peerId: self.spacePeerId, namespace: self.spaceNamespace)) } @@ -1073,7 +1073,7 @@ struct OrderedHistoryViewEntries { } } - #if DEBUG + #if DEBUG && TARGET_OS_IOS for entry in self.lowerOrAtAnchor { assert(self.anchor.isEqualOrGreater(than: entry.index, peerId: self.spacePeerId, namespace: self.spaceNamespace)) } @@ -1099,7 +1099,7 @@ struct OrderedHistoryViewEntries { } } - #if DEBUG + #if DEBUG && TARGET_OS_IOS for entry in self.lowerOrAtAnchor { assert(self.anchor.isEqualOrGreater(than: entry.index, peerId: self.spacePeerId, namespace: self.spaceNamespace)) } @@ -1125,7 +1125,7 @@ struct OrderedHistoryViewEntries { self.lowerOrAtAnchor.remove(at: index) - #if DEBUG + #if DEBUG && TARGET_OS_IOS for entry in self.lowerOrAtAnchor { assert(self.anchor.isEqualOrGreater(than: entry.index, peerId: self.spacePeerId, namespace: self.spaceNamespace)) } @@ -1151,7 +1151,7 @@ struct OrderedHistoryViewEntries { self.higherThanAnchor.remove(at: index) - #if DEBUG + #if DEBUG && TARGET_OS_IOS for entry in self.lowerOrAtAnchor { assert(self.anchor.isEqualOrGreater(than: entry.index, peerId: self.spacePeerId, namespace: self.spaceNamespace)) } @@ -1207,7 +1207,7 @@ struct OrderedHistoryViewEntries { self.higherThanAnchor.sort(by: { $0.index.id.id < $1.index.id.id }) } - #if DEBUG + #if DEBUG && TARGET_OS_IOS for entry in self.lowerOrAtAnchor { assert(self.anchor.isEqualOrGreater(than: entry.index, peerId: self.spacePeerId, namespace: self.spaceNamespace)) }