From 37648e9cb8a0aea4684f24d3a8df578c4baffbef Mon Sep 17 00:00:00 2001 From: root Date: Tue, 11 Oct 2022 21:17:32 +0530 Subject: [PATCH] Adjust comments --- src/routes/WatchVideo.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/WatchVideo.vue b/src/routes/WatchVideo.vue index e7b5343..5da7305 100644 --- a/src/routes/WatchVideo.vue +++ b/src/routes/WatchVideo.vue @@ -402,9 +402,9 @@ export default { return this.$route.query.v || this.$route.params.v }, initialSkip () { - // 't' in $route.query ? Number($route.query.t) : (lastWatch.progress ? lastWatch.progress : undefined) - // 1st Priority - t in query - // 2nd Priority - Last Watched Progress, if enabled + // “t” in $route.query ? Number($route.query.t) : (lastWatch.progress ? lastWatch.progress : undefined) + // 1st Priority – t in query + // 2nd Priority – Last Watched Progress, if enabled. if ('t' in this.$route.query) { return Number(this.$route.query.t) } else if ('start' in this.$route.query) {