Expose NotificationExceptionsList initializer

This commit is contained in:
Ilya Laktyushin
2019-03-19 18:58:14 +04:00
parent e9e5c46074
commit 3cedd06d31

View File

@@ -11,7 +11,7 @@ public final class NotificationExceptionsList: Equatable {
public let peers: [PeerId: Peer]
public let settings: [PeerId: TelegramPeerNotificationSettings]
init(peers: [PeerId: Peer], settings: [PeerId: TelegramPeerNotificationSettings]) {
public init(peers: [PeerId: Peer], settings: [PeerId: TelegramPeerNotificationSettings]) {
self.peers = peers
self.settings = settings
}