From 8b791e77d67f6dfc66630f88795f4da891ec22b8 Mon Sep 17 00:00:00 2001 From: nyakze Date: Mon, 31 Mar 2025 17:16:06 +0400 Subject: [PATCH] Update mime_type.cpp add m3u to ip revealing types --- Telegram/SourceFiles/core/mime_type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/core/mime_type.cpp b/Telegram/SourceFiles/core/mime_type.cpp index 5e15fd4e3d..5683ef634d 100644 --- a/Telegram/SourceFiles/core/mime_type.cpp +++ b/Telegram/SourceFiles/core/mime_type.cpp @@ -326,7 +326,7 @@ bool NameTypeAllowsThumbnail(NameType type) { bool IsIpRevealingPath(const QString &filepath) { static const auto kExtensions = [] { - const auto joined = u"htm html svg m4v m3u8 xhtml"_q; + const auto joined = u"htm html svg m4v m3u m3u8 xhtml"_q; const auto list = joined.split(' '); return base::flat_set(list.begin(), list.end()); }();