Skip to content

Commit

Permalink
Merge pull request #1393 from nextcloud/fixDownloadedPodcastsCrash
Browse files Browse the repository at this point in the history
Fix crash in downloaded podcasts below API 34
  • Loading branch information
David-Development authored Mar 13, 2024
2 parents 7f60469 + 556b1e9 commit 27ad0fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ protected List<RssItem> doInBackground(Void... voids) {
items = items.stream().filter((rss) -> {
var podcast = DatabaseConnectionOrm.ParsePodcastItemFromRssItem(mActivity, rss);
return podcast.offlineCached;
}).toList();
}).collect(Collectors.toList());
}

sw.stop();
Expand Down

0 comments on commit 27ad0fd

Please sign in to comment.