Remove non cancellable call when trying to init reader

This commit is contained in:
AntsyLich
2026-07-16 18:23:43 +06:00
parent c3b99aea07
commit 98bb731b4d
@@ -180,7 +180,7 @@ class ReaderActivity : BaseActivity() {
}
NotificationReceiver.dismissNotification(this, manga.hashCode(), Notifications.ID_NEW_CHAPTERS)
lifecycleScope.launchNonCancellable {
lifecycleScope.launch {
val initResult = viewModel.init(manga, chapter)
if (!initResult.getOrDefault(false)) {
val exception = initResult.exceptionOrNull() ?: IllegalStateException("Unknown err")