home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
MediaPortal 1 Plugins
MyTorrents
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="nerd1701" data-source="post: 231089" data-attributes="member: 55976"><p><strong>Having problems with Revision3 feeds</strong></p><p></p><p>I'm having problems with the revision3 podcast feeds.</p><p></p><p>For example, the feed for Tekzilla is <a href="http://revision3.com/tekzilla/feed/quicktime-high-definition/" target="_blank">http://revision3.com/tekzilla/feed/quicktime-high-definition/</a></p><p></p><p>There is no direct file, but the output is rss xml.</p><p></p><p>Here's the error information:</p><p></p><p>System.NullReferenceException: Object reference not set to an instance of an object.</p><p> at c3o.Framework.Web.RssReader.GetRssHeader(XmlDocument xml)</p><p> at MediaPortal.GUI.Rss.RssBaseSetupForm.AddRssTree(XmlDocument xml)</p><p> </p><p></p><p>EDIT: I found the fix. You gotta love open source. Where can the changes be checked in?</p><p></p><p>In RSSReader.cs make the following changes:</p><p></p><p>Change: </p><p></p><p> foreach (XmlNode childNode in itemChildren)</p><p> {</p><p> if (childNode.Name != "item" &&</p><p> childNode.Name != "itunes:category") </p><p></p><p>to: </p><p></p><p> foreach (XmlNode childNode in itemChildren)</p><p> {</p><p> if (childNode.Name != "item" &&</p><p> childNode.Name != "itunes:category" &&</p><p> childNode.Attributes != null</p><p> ) </p><p></p><p>Change:</p><p> // Populate columns in row</p><p> foreach (XmlNode childNode in itemChildren)</p><p> {</p><p> if (childNode.Name != "item" &&</p><p> childNode.Name != "itunes:category" )</p><p>to:</p><p> // Populate columns in row</p><p> foreach (XmlNode childNode in itemChildren)</p><p> {</p><p> if (childNode.Name != "item" &&</p><p> childNode.Name != "itunes:category" &&</p><p> childNode.Attributes != null</p><p> )</p></blockquote><p></p>
[QUOTE="nerd1701, post: 231089, member: 55976"] [b]Having problems with Revision3 feeds[/b] I'm having problems with the revision3 podcast feeds. For example, the feed for Tekzilla is [url]http://revision3.com/tekzilla/feed/quicktime-high-definition/[/url] There is no direct file, but the output is rss xml. Here's the error information: System.NullReferenceException: Object reference not set to an instance of an object. at c3o.Framework.Web.RssReader.GetRssHeader(XmlDocument xml) at MediaPortal.GUI.Rss.RssBaseSetupForm.AddRssTree(XmlDocument xml) EDIT: I found the fix. You gotta love open source. Where can the changes be checked in? In RSSReader.cs make the following changes: Change: foreach (XmlNode childNode in itemChildren) { if (childNode.Name != "item" && childNode.Name != "itunes:category") to: foreach (XmlNode childNode in itemChildren) { if (childNode.Name != "item" && childNode.Name != "itunes:category" && childNode.Attributes != null ) Change: // Populate columns in row foreach (XmlNode childNode in itemChildren) { if (childNode.Name != "item" && childNode.Name != "itunes:category" ) to: // Populate columns in row foreach (XmlNode childNode in itemChildren) { if (childNode.Name != "item" && childNode.Name != "itunes:category" && childNode.Attributes != null ) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Plugins
MyTorrents
Contact us
RSS
Top
Bottom