diff --git a/src/common/kiwix/searcher.cpp b/src/common/kiwix/searcher.cpp index 4305841f4..0f2567031 100644 --- a/src/common/kiwix/searcher.cpp +++ b/src/common/kiwix/searcher.cpp @@ -35,7 +35,8 @@ namespace kiwix { std::transform(search.begin(), search.end(), search.begin(), ::tolower); /* Create the query term vector */ - std::vector queryTerms = split(removeAccents(search.c_str()), " #@%$0/\\_-*()[]{},;:"); + /* I have the doublequote " because bug ID: 2939690 */ + std::vector queryTerms = split(removeAccents(search.c_str()), " #@%$0/\\_-*()[]{},;:\"ยด`'"); /* Create query object */ Xapian::Query query(Xapian::Query::OP_OR, queryTerms.begin(), queryTerms.end());