MadCoderZ / NewsBotIRC

NewsBotIRC - Java IRC Bot with RSS feed reader
MIT License
3 stars 2 forks source link

If one feed is malformed, all feeds are skipped and no entry is posted into the channel #19

Closed gpoppino closed 7 years ago

gpoppino commented 7 years ago

There should be a try {} catch(FeedException) to prevent line 99 in NewsReader.java to throw an exception making readNews() to skip every feed available when one is malformed.

This way, only the affected feed is ignored but the bot can continue to post entries from others feeds into the channel.

gpoppino commented 7 years ago

The way that feeds are read now, makes this bug obsolete. This was fixed in the implementation of #8 (if a malformed feed is found, it is skipped).