Skip to content

Commit

Permalink
Remove launch block when fetching feeds during OPML import
Browse files Browse the repository at this point in the history
For OPML with feeds count less than chunk size
  • Loading branch information
msasikanth committed Feb 5, 2024
1 parent a9b8f2f commit 3f4fb72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class OpmlManager(
}
} else {
feedLinks.reversed().forEachIndexed { index, feed ->
launch { rssRepository.addFeed(feedLink = feed.link, title = feed.title) }
rssRepository.addFeed(feedLink = feed.link, title = feed.title)
sendProgress(index, totalFeedCount)
}
}
Expand Down

0 comments on commit 3f4fb72

Please sign in to comment.