1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-14 06:10:28 +05:30

Merge pull request #1345 from AlyoshaVasilieva/passv

Pass timestamp when redirecting youtu.be style
This commit is contained in:
Kavin 2022-08-29 18:35:34 +05:30 committed by GitHub
commit ef8051c2c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ export default {
if (videoId) if (videoId)
this.$router.replace({ this.$router.replace({
path: "/watch", path: "/watch",
query: { v: videoId }, query: { v: videoId, t: this.$route.query.t },
}); });
}, },
}; };