0
0
mirror of https://github.com/mediathekview/zapp.git synced 2024-09-19 20:02:17 +02:00

Fix item marked as relevant to user once it was bookmarked

This commit is contained in:
Christine Coenen 2022-11-22 14:50:40 +01:00
parent 076f0da061
commit 76ef8eaa43

View File

@ -183,7 +183,7 @@ class MediathekRepository(private val database: Database) {
.mediathekShowDao()
.getIsRelevantForUser(apiId)
.distinctUntilChanged()
.filterNotNull()
.map { it == true }
.onStart { emit(false) }
.flowOn(Dispatchers.IO)
}