diff --git a/src/components/WatchVideo.vue b/src/components/WatchVideo.vue index 07e695a6..fabfd3c1 100644 --- a/src/components/WatchVideo.vue +++ b/src/components/WatchVideo.vue @@ -53,6 +53,14 @@ > {{ $t("player.watch_on") }} LBRY + + +
@@ -122,7 +130,11 @@
- + {{ showRecs ? $t("actions.minimize_recommendations") : $t("actions.show_recommendations") }}
-
+
@@ -306,6 +318,11 @@ export default { }, }, computed: { + toggleListenUrl(_this) { + const url = new URL(window.location.href); + url.searchParams.set("listen", _this.getPreferenceBoolean("listen", false) ? "0" : "1"); + return url.href; + }, isEmbed(_this) { return String(_this.$route.path).indexOf("/embed/") == 0; },