소스 검색

UpdatesPresenter: Prevent unnecessary screen recompose (#7742)

Ivan Iskandar 2 년 전
부모
커밋
5f378e28b6
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      app/src/main/java/eu/kanade/tachiyomi/ui/recent/updates/UpdatesPresenter.kt

+ 2 - 0
app/src/main/java/eu/kanade/tachiyomi/ui/recent/updates/UpdatesPresenter.kt

@@ -30,6 +30,7 @@ import kotlinx.coroutines.channels.Channel
 import kotlinx.coroutines.flow.Flow
 import kotlinx.coroutines.flow.catch
 import kotlinx.coroutines.flow.collectLatest
+import kotlinx.coroutines.flow.distinctUntilChanged
 import kotlinx.coroutines.flow.receiveAsFlow
 import logcat.LogPriority
 import uy.kohesive.injekt.Injekt
@@ -81,6 +82,7 @@ class UpdatesPresenter(
             }
 
             getUpdates.subscribe(calendar)
+                .distinctUntilChanged()
                 .catch {
                     logcat(LogPriority.ERROR, it)
                     _events.send(Event.InternalError)