From 4a8927c794aa4c4ac4423eb62d7fe98bd706a658 Mon Sep 17 00:00:00 2001 From: FireMasterK <20838718+FireMasterK@users.noreply.github.com> Date: Tue, 21 Sep 2021 22:48:55 +0100 Subject: [PATCH] Default to autoplay being disabled by default. Closes #466 --- src/components/WatchVideo.vue | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/src/components/WatchVideo.vue b/src/components/WatchVideo.vue index 60b393b2..420743d0 100644 --- a/src/components/WatchVideo.vue +++ b/src/components/WatchVideo.vue @@ -85,11 +85,27 @@
-   - +   +
-   - +   +
@@ -167,7 +183,7 @@ export default { }, activated() { this.active = true; - this.selectedAutoPlay = this.getPreferenceBoolean("autoplay", true); + this.selectedAutoPlay = this.getPreferenceBoolean("autoplay", false); this.showDesc = !this.getPreferenceBoolean("minimizeDescription", false); if (this.video.duration) { document.title = this.video.title + " - Piped";