musikr: fix limited buffer call

This commit is contained in:
Alexander Capehart 2025-03-17 14:51:57 -06:00
parent 296bd9ca06
commit e73dffcb2a
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -101,7 +101,7 @@ private class ExploreStepImpl(
flow { emitAll(storedPlaylists.read().asFlow()) }
.map { RawPlaylist(it) }
.flowOn(Dispatchers.IO)
.buffer())
.buffer(Channel.UNLIMITED))
}
private sealed interface InternalExploreItem