diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG
index 0985b6079..02bb88db0 100644
--- a/resources/text/CHANGELOG
+++ b/resources/text/CHANGELOG
@@ -21,6 +21,7 @@
Fixed:
+ - Fixed obtaining of contents in RSS 2.0 feed entries. (bug #130)
- Improved popup informing about changes in newly installed version.
- Icons in notification popups are now smaller (22 x 22 pixels).
- Encoding selection widget in feed add/edit dialog now detects encodings via case insensitive string matching.
diff --git a/src/core/parsingfactory.cpp b/src/core/parsingfactory.cpp
index af0ccd3ac..017d372d9 100755
--- a/src/core/parsingfactory.cpp
+++ b/src/core/parsingfactory.cpp
@@ -203,12 +203,12 @@ QList ParsingFactory::parseAsRSS20(const QString &data) {
// Deal with titles & descriptions.
QString elem_title = message_item.namedItem(QSL("title")).toElement().text().simplified();
- QString elem_description = message_item.namedItem(QSL("description")).toElement().text();
+ QString elem_description = message_item.namedItem(QSL("encoded")).toElement().text();
QString elem_enclosure = message_item.namedItem(QSL("enclosure")).toElement().attribute(QSL("url"));
QString elem_enclosure_type = message_item.namedItem(QSL("enclosure")).toElement().attribute(QSL("type"));
if (elem_description.isEmpty()) {
- elem_description = message_item.namedItem(QSL("encoded")).toElement().text();
+ elem_description = message_item.namedItem(QSL("description")).toElement().text();
}
// Now we obtained maximum of information for title & description.