diff --git a/src/common/kiwix/reader.cpp b/src/common/kiwix/reader.cpp index d7d9ebc95..030b6a6f9 100644 --- a/src/common/kiwix/reader.cpp +++ b/src/common/kiwix/reader.cpp @@ -236,6 +236,12 @@ namespace kiwix { string Reader::getDescription() { string value; this->getMetatag("Description", value); + + /* Mediawiki Collection tends to use the "Subtitle" name */ + if (value.empty()) { + this->getMetatag("Subtitle", value); + } + return value; }