From 297cf415fc773b167ffad0ed7e16ff443946001e Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Fri, 5 Sep 2014 07:07:26 +0200 Subject: [PATCH] Bug #49 fixed. --- src/core/feedsimportexportmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/feedsimportexportmodel.cpp b/src/core/feedsimportexportmodel.cpp index dda3875f0..a0ec7a2b2 100644 --- a/src/core/feedsimportexportmodel.cpp +++ b/src/core/feedsimportexportmodel.cpp @@ -186,7 +186,7 @@ bool FeedsImportExportModel::importAsOPML20(const QByteArray &data) { QString feed_title = child_element.attribute("text"); QString feed_url = child_element.attribute("xmlUrl"); QString feed_encoding = child_element.attribute("encoding", DEFAULT_FEED_ENCODING); - QString feed_type = child_element.attribute("version", DEFAULT_FEED_TYPE); + QString feed_type = child_element.attribute("version", DEFAULT_FEED_TYPE).toUpper(); QString feed_description = child_element.attribute("description"); FeedsModelFeed *new_feed = new FeedsModelFeed(active_model_item);