marcjoha / feed_finder

A Dart library that extracts RSS/Atom feed links from a website.
MIT License
4 stars 2 forks source link

No items while parsing #1

Closed francescovallone closed 4 years ago

francescovallone commented 4 years ago

Hello, I was trying to parse some rss feed from https://videogamezone.eu/feed.xml but it returns an empty list...

Here is the code:


loadFeed() async {
    _feed = await FeedFinder.scrape(FEED_URL);
    print(_feed);
    return _feed;
  }