From a79447e430c42dd9d680fb5e9539f2bc4a3795a8 Mon Sep 17 00:00:00 2001 From: isaac <> Date: Tue, 28 Apr 2026 16:57:08 +0400 Subject: [PATCH] Remove debugging --- .../ManagedSynchronizeInstalledStickerPacksOperations.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/submodules/TelegramCore/Sources/State/ManagedSynchronizeInstalledStickerPacksOperations.swift b/submodules/TelegramCore/Sources/State/ManagedSynchronizeInstalledStickerPacksOperations.swift index e3a98beddb..58c7a11fef 100644 --- a/submodules/TelegramCore/Sources/State/ManagedSynchronizeInstalledStickerPacksOperations.swift +++ b/submodules/TelegramCore/Sources/State/ManagedSynchronizeInstalledStickerPacksOperations.swift @@ -674,8 +674,8 @@ private func continueSynchronizeInstalledStickerPacks(transaction: Transaction, return installRemoteStickerPacks(network: network, infos: addRemoteCollectionInfos) |> mapToSignal { result -> Signal, NoError> in let ids = result.ids - if result.archivedCount != 0 || "".isEmpty { - stateManager.installedStickerPacksArchived(count: result.archivedCount + 1) + if result.archivedCount != 0 { + stateManager.installedStickerPacksArchived(count: result.archivedCount) } return (reorderRemoteStickerPacks(network: network, namespace: namespace, ids: resultingCollectionInfos.map({ $0.0.id }).filter({ !ids.contains($0) }))