Selaa lähdekoodia

Fix double tapping History not working consistently

Fixes #8875
arkon 2 vuotta sitten
vanhempi
commit
46774771ec

+ 2 - 2
app/src/main/java/eu/kanade/tachiyomi/ui/history/HistoryTab.kt

@@ -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())
             }
         }