registry: Ignore "unsorteddashtoc" as a keyword

This commit is contained in:
Oleg Shparber 2016-09-17 20:53:48 -04:00
parent 10a11e2778
commit 801d3e44e2

View File

@ -146,7 +146,7 @@ Docset::Docset(const QString &path) :
if (plist.contains(InfoPlist::DashDocSetFamily)) {
const QString kw = plist[InfoPlist::DashDocSetFamily].toString();
if (kw != QLatin1String("dashtoc"))
if (kw != QLatin1String("dashtoc") && kw != QLatin1String("unsorteddashtoc"))
m_keywords << kw;
}