From 70b479b3048ccff0a560fc4dd47b4ae535a94955 Mon Sep 17 00:00:00 2001 From: Ali <> Date: Tue, 8 Mar 2022 23:52:25 +0400 Subject: [PATCH] Filter round videos --- submodules/FetchManagerImpl/Sources/FetchManagerImpl.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/submodules/FetchManagerImpl/Sources/FetchManagerImpl.swift b/submodules/FetchManagerImpl/Sources/FetchManagerImpl.swift index d12be7953c..5e1e3c33eb 100644 --- a/submodules/FetchManagerImpl/Sources/FetchManagerImpl.swift +++ b/submodules/FetchManagerImpl/Sources/FetchManagerImpl.swift @@ -597,6 +597,9 @@ private func filterDownloadStatsEntry(entry: FetchManagerLocationEntry) -> Bool return false } } + if file.isInstantVideo { + return false + } if file.isSticker { return false }