prof18/RSS-Parser

Can not parse `pubDate` tag which has inner `time` tag

duchuyctlk opened this issue · 0 comments

Parse a rss feed whose items contain pubDate tags with a child tag (time). Eg:

<item>
  <title>Sample title</title>
  <link>http://www.sample-link.com</link>
  <description>Sample description</description>
  <pubDate>
    <time datetime="2019-05-12T10:00:00Z">Sun, 05/12/2019 - 10:00</time>
  </pubDate>
</item>

Expected result: Item whose pubDate equals to Sun, 05/12/2019 - 10:00
Actual result: App crashed.