Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
Increase player seekbar polling rate
Browse files Browse the repository at this point in the history
  • Loading branch information
SuhasDissa committed Aug 24, 2023
1 parent 34d1750 commit 4b8abd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ fun Player.positionAndDurationState(): State<Pair<Long, Long?>> {
if (!isSeeking) {
value = currentPosition to duration.let { if (it < 0) null else it }
}
delay(1000)
delay(500)
}
}
if (!isActive) {
Expand Down

0 comments on commit 4b8abd2

Please sign in to comment.