Skip to content

Commit

Permalink
Fix audio now playing screen always showing "1 of x" instead of the a…
Browse files Browse the repository at this point in the history
…ctual queue position
  • Loading branch information
nielsvanvelzen committed Nov 15, 2024
1 parent a572710 commit ee1403a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class RewriteMediaManager(
get() = playbackManager.state.positionInfo.active.inWholeMilliseconds

override val currentAudioQueueDisplayPosition: String
get() = (currentAudioQueuePosition + 1).toString()
get() = (playbackManager.queue.entryIndex.value + 1).toString()

override val currentAudioQueueDisplaySize: String
get() = playbackManager.queue.estimatedSize.toString()
Expand Down

0 comments on commit ee1403a

Please sign in to comment.