From 7cef1a840d0e516fd09d90099a73afba9b1aaace Mon Sep 17 00:00:00 2001 From: Malloc Voidstar <1284317+AlyoshaVasilieva@users.noreply.github.com> Date: Sun, 28 Aug 2022 20:34:25 -0700 Subject: [PATCH] Pass timestamp when redirecting youtu.be style --- src/components/VideoRedirect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/VideoRedirect.vue b/src/components/VideoRedirect.vue index 91763534..be13ac65 100644 --- a/src/components/VideoRedirect.vue +++ b/src/components/VideoRedirect.vue @@ -9,7 +9,7 @@ export default { if (videoId) this.$router.replace({ path: "/watch", - query: { v: videoId }, + query: { v: videoId, t: this.$route.query.t }, }); }, };