diff options
author | elupus <elupus@svn> | 2010-08-28 17:19:04 +0000 |
---|---|---|
committer | elupus <elupus@svn> | 2010-08-28 17:19:04 +0000 |
commit | a36f6c96f27f135862a5db4fa83cc53495943bdf (patch) | |
tree | 7d9b31d6e45031ec0e21a765b632293769df5dd4 | |
parent | 94c04edc1b6fa2e0e80d4cf941c3221189359bf2 (diff) |
changed: parse media:group entries in rss (will select the first available item)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@33281 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | xbmc/FileSystem/RSSDirectory.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xbmc/FileSystem/RSSDirectory.cpp b/xbmc/FileSystem/RSSDirectory.cpp index b7978a4db6..0567fb7496 100644 --- a/xbmc/FileSystem/RSSDirectory.cpp +++ b/xbmc/FileSystem/RSSDirectory.cpp @@ -133,6 +133,10 @@ static void ParseItemMRSS(CFileItem* item, TiXmlElement* item_child, const CStdS ParseItem(item, item_child); } + else if(name == "group") + { + ParseItem(item, item_child); + } else if(name == "thumbnail") { if(item_child->GetText() && IsPathToThumbnail(item_child->GetText())) |