From 0ffc9d7b98dec4ac8c5bd86ea7fd2c8747cbb0d9 Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Wed, 1 Sep 2021 01:43:59 +0300 Subject: [PATCH] Fix trending packs dismissal --- submodules/TelegramUI/Sources/DeclareEncodables.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/submodules/TelegramUI/Sources/DeclareEncodables.swift b/submodules/TelegramUI/Sources/DeclareEncodables.swift index 5eaaa38693..444cfa1312 100644 --- a/submodules/TelegramUI/Sources/DeclareEncodables.swift +++ b/submodules/TelegramUI/Sources/DeclareEncodables.swift @@ -28,6 +28,7 @@ private var telegramUIDeclaredEncodables: Void = { declareEncodable(ApplicationSpecificVariantNotice.self, f: { ApplicationSpecificVariantNotice(decoder: $0) }) declareEncodable(ApplicationSpecificCounterNotice.self, f: { ApplicationSpecificCounterNotice(decoder: $0) }) declareEncodable(ApplicationSpecificTimestampNotice.self, f: { ApplicationSpecificTimestampNotice(decoder: $0) }) + declareEncodable(ApplicationSpecificInt64ArrayNotice.self, f: { ApplicationSpecificInt64ArrayNotice(decoder: $0) }) declareEncodable(CallListSettings.self, f: { CallListSettings(decoder: $0) }) declareEncodable(VoiceCallSettings.self, f: { VoiceCallSettings(decoder: $0) }) declareEncodable(ExperimentalSettings.self, f: { ExperimentalSettings(decoder: $0) })