mirror of https://github.com/kiwix/libkiwix.git
* Fix regressions responsible for lower case titles in result list (ID: 3147594)
This commit is contained in:
parent
4deacdd923
commit
fa0add82ac
|
@ -101,8 +101,9 @@ namespace kiwix {
|
||||||
std::cout << "Indexing " << url << "..." << std::endl;
|
std::cout << "Indexing " << url << "..." << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string accentedTitle = this->htmlParser.title;
|
||||||
this->indexNextArticle(url,
|
this->indexNextArticle(url,
|
||||||
this->htmlParser.title,
|
accentedTitle,
|
||||||
removeAccents(this->htmlParser.title),
|
removeAccents(this->htmlParser.title),
|
||||||
removeAccents(this->htmlParser.keywords),
|
removeAccents(this->htmlParser.keywords),
|
||||||
removeAccents(this->htmlParser.dump));
|
removeAccents(this->htmlParser.dump));
|
||||||
|
|
Loading…
Reference in New Issue