0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-29 14:43:04 +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-icon>mdi-chevron-down</v-icon>
</v-btn> </v-btn>
<!-- VueTube Player V1 --> <!-- VueTube Player V1 -->
<legacyPlayer <vuetubePlayer
:sources="sources" :sources="sources"
v-if="useBetaPlayer === 'true' && sources.length > 0" v-if="useBetaPlayer === 'true' && sources.length > 0"
/> />
<!-- Stock Player --> <!-- Stock Player -->
<videoPlayer <legacyPlayer
id="player" id="player"
ref="player" ref="player"
v-touch="{ down: () => $router.push('/home') }" v-touch="{ down: () => $router.push('/home') }"