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

smol pause skipping bugfix

This commit is contained in:
Nikita Krupin 2022-07-31 14:02:52 -04:00
parent e81eb886f5
commit 1ba6ddb0df

View file

@ -469,7 +469,7 @@ export default {
clearTimeout(this.bufferingDetected);
this.bufferingDetected = false;
}
if (this.$refs.audio.paused) this.$refs.audio.play();
if (this.$refs.audio.paused && !vid.paused) this.$refs.audio.play();
this.buffered = (vid.buffered.end(0) / vid.duration) * 100;
});