You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 15, 2021. It is now read-only.
Some feeds that use <body> instead of encoded <content> elements are failing. It appears that the parser gets confused about open/close using the XmlReader in the <body> element since it attempts to construct SyndicationContent for all the nested XHTML. This results in exceptions like:
'Element' is an invalid XmlNodeType
For example, see http://feeds.feedburner.com/RockfordLhotka. I'm going to try and fix this by skipping <body> elements and using their inner XML as the value for the outer SyndicationContent. Will submit a PR if that works.