From 997f24d62f73f206b80228df84c6502755878540 Mon Sep 17 00:00:00 2001 From: shenleban tongying Date: Sun, 6 Oct 2024 17:11:56 -0400 Subject: [PATCH] fix: dictd's description display (00databaseinfo) --- src/dict/dictdfiles.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dict/dictdfiles.cc b/src/dict/dictdfiles.cc index 2199d8a1..b7869dc2 100644 --- a/src/dict/dictdfiles.cc +++ b/src/dict/dictdfiles.cc @@ -426,8 +426,7 @@ QString const & DictdDictionary::getDescription() sptr< Dictionary::DataRequest > req = getArticle( U"00databaseinfo", vector< wstring >(), wstring(), false ); if ( req->dataSize() > 0 ) { - dictionaryDescription = Html::unescape( QString::fromUtf8( req->getFullData().data(), req->getFullData().size() ), - Html::HtmlOption::Keep ); + dictionaryDescription = QString::fromUtf8( req->getFullData().data(), req->getFullData().size() ); } else { dictionaryDescription = "NONE";