0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-25 20:55:17 +00:00

fix: 🐛 fix beta player once and for all

i accidentially switched the beta player and legacy player in `~/pages/watch.vue` so they both broke. now fixed and both work better than ever
This commit is contained in:
Front 2022-04-29 17:38:56 -04:00
parent 0cb7a3511a
commit 2a781b9e6b

View file

@ -5,13 +5,13 @@
<v-icon>mdi-chevron-down</v-icon>
</v-btn>
<!-- VueTube Player V1 -->
<legacyPlayer
<vuetubePlayer
:sources="sources"
v-if="useBetaPlayer === 'true' && sources.length > 0"
/>
<!-- Stock Player -->
<videoPlayer
<legacyPlayer
id="player"
ref="player"
v-touch="{ down: () => $router.push('/home') }"