feedly: convert feed descriptions from html to text

This commit is contained in:
Martin Rotter 2022-03-24 07:30:41 +01:00
parent ad2ec0eb1b
commit 1c8293a5aa
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
<url type="donation">https://github.com/sponsors/martinrotter</url>
<content_rating type="oars-1.1" />
<releases>
<release version="4.2.1" date="2022-03-23"/>
<release version="4.2.1" date="2022-03-24"/>
</releases>
<content_rating type="oars-1.0">
<content_attribute id="violence-cartoon">none</content_attribute>

View File

@ -539,7 +539,7 @@ RootItem* FeedlyNetwork::decodeCollections(const QByteArray& json, bool obtain_i
feed->setSource(fee_obj[QSL("website")].toString());
feed->setTitle(fee_obj[QSL("title")].toString());
feed->setDescription(fee_obj[QSL("description")].toString());
feed->setDescription(qApp->web()->stripTags(fee_obj[QSL("description")].toString()));
feed->setCustomId(fee_obj[QSL("id")].toString());
if (obtain_icons) {