Skip to content

Commit 916b7ef

Browse files
committed
Reduce seek delay to 300
1 parent 316bb43 commit 916b7ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/musicplayer/playback/player/SimpleMusicPlayer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class SimpleMusicPlayer(private val exoPlayer: ExoPlayer) : ForwardingPlayer(exo
141141
private fun seekWithDelay() {
142142
seekJob?.cancel()
143143
seekJob = scope.launch {
144-
delay(timeMillis = 400)
144+
delay(timeMillis = 300)
145145
val seekCount = seekToNextCount - seekToPreviousCount
146146
if (seekCount != 0) {
147147
seekByCount(seekCount)

0 commit comments

Comments
 (0)