diff --git a/shared/src/commonMain/kotlin/dev/sasikanth/rss/reader/reader/ReaderPresenter.kt b/shared/src/commonMain/kotlin/dev/sasikanth/rss/reader/reader/ReaderPresenter.kt index 257878baf..d916b2606 100644 --- a/shared/src/commonMain/kotlin/dev/sasikanth/rss/reader/reader/ReaderPresenter.kt +++ b/shared/src/commonMain/kotlin/dev/sasikanth/rss/reader/reader/ReaderPresenter.kt @@ -146,7 +146,7 @@ class ReaderPresenter( private suspend fun extractArticleHtmlContent(postLink: String, content: String): String { val article = - withContext(dispatchersProvider.io) { Readability(postLink, content) }.parse() + withContext(dispatchersProvider.io) { Readability(postLink, content).parse() } ?: return content val articleContent = article.content