Fix optional

This commit is contained in:
Ali
2023-09-11 17:14:27 +02:00
parent da4f5a67bb
commit 9d77d54807
2 changed files with 7 additions and 7 deletions

View File

@@ -1193,7 +1193,7 @@ public extension TelegramEngine {
return _internal_getChannelBoostStatus(account: self.account, peerId: peerId)
}
public func canApplyChannelBoost(peerId: EnginePeer.Id) -> Signal<CanApplyBoostStatus?, NoError> {
public func canApplyChannelBoost(peerId: EnginePeer.Id) -> Signal<CanApplyBoostStatus, NoError> {
return _internal_canApplyChannelBoost(account: self.account, peerId: peerId)
}
}