Skip to content

Commit

Permalink
Merge pull request #149 from Vishnuv2311/main
Browse files Browse the repository at this point in the history
Update VideoPlayerSeeker.kt
  • Loading branch information
chikoski committed Mar 22, 2024
2 parents 2dfb83c + a4622eb commit b6abbe2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fun VideoPlayerSeeker(
if(h > 0) {
"$h:${m.padStartWith0()}:${s.padStartWith0()}"
} else {
":${m.padStartWith0()}:${s.padStartWith0()}"
"${m.padStartWith0()}:${s.padStartWith0()}"
}

}
Expand All @@ -36,7 +36,7 @@ fun VideoPlayerSeeker(
if(h > 0) {
"$h:${m.padStartWith0()}:${s.padStartWith0()}"
} else {
":${m.padStartWith0()}:${s.padStartWith0()}"
"${m.padStartWith0()}:${s.padStartWith0()}"
}

}
Expand Down

0 comments on commit b6abbe2

Please sign in to comment.