Update mime_type.cpp

add m3u to ip revealing types
This commit is contained in:
nyakze 2025-03-31 17:16:06 +04:00 committed by John Preston
parent 260b72fec1
commit 8b791e77d6

View file

@ -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<QString>(list.begin(), list.end());
}();