feat(ux): remember time code when switching between audio/video mode

This commit is contained in:
Bnyro 2024-07-15 12:48:15 +02:00
parent 5963dba626
commit bb48d17f81

View File

@ -344,6 +344,7 @@ export default {
toggleListenUrl(_this) { toggleListenUrl(_this) {
const url = new URL(window.location.href); const url = new URL(window.location.href);
url.searchParams.set("listen", _this.isListening ? "0" : "1"); url.searchParams.set("listen", _this.isListening ? "0" : "1");
url.searchParams.set("t", Math.floor(this.currentTime));
return url.pathname + url.search; return url.pathname + url.search;
}, },
isEmbed(_this) { isEmbed(_this) {