From 894cf647f38194806a443ba936c78dbc09a08be8 Mon Sep 17 00:00:00 2001 From: Yves Date: Fri, 28 Oct 2011 16:03:40 -0700 Subject: [PATCH] psa: fix feeds not showing up in some cases --- psa_harmattan/feedingit/qml/Feeds.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/psa_harmattan/feedingit/qml/Feeds.qml b/psa_harmattan/feedingit/qml/Feeds.qml index fa6a6c0..2f39cbd 100644 --- a/psa_harmattan/feedingit/qml/Feeds.qml +++ b/psa_harmattan/feedingit/qml/Feeds.qml @@ -8,7 +8,7 @@ Item { signal feedClicked(string feedid) function reload() { - feeds.xml = catid == "" ? "" : controller.getFeedsXml(catid); + feeds.xml = catid == "" ? "" : controller.getFeedsXml(catid); //feeds.reload() console.log(feeds.xml) } @@ -27,7 +27,7 @@ Item { id: feeds //source: catid == "" ? "" : "http://localhost:8000/feeds/" + catid //+ "?onlyUnread=" + parent.hideReadArticles - xml: catid == "" ? "" : controller.getFeedsXml(catid) + xml: catid == "" ? "" : controller.getFeedsXml(catid) query: "/xml/feed" XmlRole { name: "title"; query: "feedname/string()" } -- 1.7.9.5