[create-pull-request] automated change (#54)

Co-authored-by: acvigue <acvigue@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-06-10 17:57:47 -07:00 committed by GitHub
parent eb5f21bf5d
commit 5122c66341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -386,7 +386,7 @@ class PlayerViewController: UIViewController, VLCMediaDelegate, VLCMediaPlayerDe
let rawStartTicks = manifest.userData?.playbackPositionTicks ?? 0
if(rawStartTicks != 0) {
if rawStartTicks != 0 {
let startSeconds = rawStartTicks / 10_000_000
mediaPlayer.jumpForward(Int32(startSeconds))
}