From 3cedd06d31c238868b2eab313bbb8ec7fb231e26 Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Tue, 19 Mar 2019 18:58:14 +0400 Subject: [PATCH] Expose NotificationExceptionsList initializer --- TelegramCore/NotificationExceptionsList.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TelegramCore/NotificationExceptionsList.swift b/TelegramCore/NotificationExceptionsList.swift index 2e17529bf7..c9ceff6734 100644 --- a/TelegramCore/NotificationExceptionsList.swift +++ b/TelegramCore/NotificationExceptionsList.swift @@ -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 }