From: Yves Date: Fri, 28 Oct 2011 23:03:40 +0000 (-0700) Subject: psa: fix feeds not showing up in some cases X-Git-Url: http://vcs.maemo.org/git/?p=feedingit;a=commitdiff_plain;h=894cf647f38194806a443ba936c78dbc09a08be8 psa: fix feeds not showing up in some cases --- 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()" }