Skip to content

Commit

Permalink
Allow feeds without entries (#611)
Browse files Browse the repository at this point in the history
  • Loading branch information
jocmp authored Dec 17, 2024
1 parent d6fec60 commit 77ca5a5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ internal class XMLFeed(
private val channel: RssChannel?
) : Feed {
override fun isValid(): Boolean {
return channel != null &&
hasEntries()
return channel != null
}

override val name: String
Expand Down

0 comments on commit 77ca5a5

Please sign in to comment.