Open shtolik opened 3 months ago
This also affects RSS feeds which fail to escape the ampersand when it's used in the text, like the arstechnica one (as of now): https://feeds.arstechnica.com/arstechnica/index
(Attached below for posterity) arstechnica.txt
Thanks for reporting this issue. The "right" way would be to have the feed owner add the proper CDATA escape.
I've done some research and there's no "smart" way to fix that.
I'll consider adding some settings in the builder to allow replacing some strings, but for now, the suggested way is manually fetching the feed as a string and parsing it with the parse
method.
Describe the bug I tried to parse the feed https://myrskyla.fi/feed/ but it contains in a title tag
Ä
instead ofÄ
which then leads to exceptions and failing to parse feed both on android and ios side. android:ios:
The link of the RSS Feed https://myrskyla.fi/feed/
I was able to fix it by replacing this (and some more likely offending chars http://www.javascripter.net/faq/accentedcharacters.htm) manually:
But i needed to fetch the feed myself because built-in XmlFetcher is internal class. So would be good to