|
@@ -28,7 +28,7 @@ import eu.kanade.tachiyomi.ui.manga.MangaScreen
|
|
|
import eu.kanade.tachiyomi.ui.reader.ReaderActivity
|
|
|
import kotlinx.coroutines.channels.Channel
|
|
|
import kotlinx.coroutines.flow.collectLatest
|
|
|
-import kotlinx.coroutines.flow.consumeAsFlow
|
|
|
+import kotlinx.coroutines.flow.receiveAsFlow
|
|
|
|
|
|
object HistoryTab : Tab {
|
|
|
|
|
@@ -110,7 +110,7 @@ object HistoryTab : Tab {
|
|
|
}
|
|
|
|
|
|
LaunchedEffect(Unit) {
|
|
|
- resumeLastChapterReadEvent.consumeAsFlow().collectLatest {
|
|
|
+ resumeLastChapterReadEvent.receiveAsFlow().collectLatest {
|
|
|
openChapter(context, screenModel.getNextChapter())
|
|
|
}
|
|
|
}
|