diff --git a/submodules/TelegramCore/Sources/TelegramEngine/Peers/TelegramEnginePeers.swift b/submodules/TelegramCore/Sources/TelegramEngine/Peers/TelegramEnginePeers.swift index 3e6c12fed7..31304a1e21 100644 --- a/submodules/TelegramCore/Sources/TelegramEngine/Peers/TelegramEnginePeers.swift +++ b/submodules/TelegramCore/Sources/TelegramEngine/Peers/TelegramEnginePeers.swift @@ -291,6 +291,10 @@ public extension TelegramEngine { public func toggleAntiSpamProtection(peerId: PeerId, enabled: Bool) -> Signal { return _internal_toggleAntiSpamProtection(account: self.account, peerId: peerId, enabled: enabled) } + + public func reportAntiSpamFalsePositive(peerId: PeerId, messageId: MessageId) -> Signal { + return _internal_reportAntiSpamFalsePositive(account: self.account, peerId: peerId, messageId: messageId) + } public func requestPeerPhotos(peerId: PeerId) -> Signal<[TelegramPeerPhoto], NoError> { return _internal_requestPeerPhotos(postbox: self.account.postbox, network: self.account.network, peerId: peerId)