aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-watch.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/+video-watch/video-watch.component.ts')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.ts b/client/src/app/videos/+video-watch/video-watch.component.ts
index 9eae45fed..dbd75b35a 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.ts
+++ b/client/src/app/videos/+video-watch/video-watch.component.ts
@@ -619,7 +619,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
619 const { video, videoCaptions, urlOptions, user } = params 619 const { video, videoCaptions, urlOptions, user } = params
620 const getStartTime = () => { 620 const getStartTime = () => {
621 const byUrl = urlOptions.startTime !== undefined 621 const byUrl = urlOptions.startTime !== undefined
622 const byHistory = video.userHistory && !this.playlist 622 const byHistory = video.userHistory && (!this.playlist || urlOptions.resume !== undefined)
623 623
624 if (byUrl) { 624 if (byUrl) {
625 return timeToInt(urlOptions.startTime) 625 return timeToInt(urlOptions.startTime)