musikr: fix limited buffer call
This commit is contained in:
parent
296bd9ca06
commit
e73dffcb2a
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ private class ExploreStepImpl(
|
||||||
flow { emitAll(storedPlaylists.read().asFlow()) }
|
flow { emitAll(storedPlaylists.read().asFlow()) }
|
||||||
.map { RawPlaylist(it) }
|
.map { RawPlaylist(it) }
|
||||||
.flowOn(Dispatchers.IO)
|
.flowOn(Dispatchers.IO)
|
||||||
.buffer())
|
.buffer(Channel.UNLIMITED))
|
||||||
}
|
}
|
||||||
|
|
||||||
private sealed interface InternalExploreItem
|
private sealed interface InternalExploreItem
|
||||||
|
|
Loading…
Reference in a new issue