mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Merge pull request #3712 from Bnyro/master
feat(ux): remember time code when switching between audio/video mode
This commit is contained in:
commit
1ae1688a82
1 changed files with 1 additions and 0 deletions
|
@ -344,6 +344,7 @@ export default {
|
|||
toggleListenUrl(_this) {
|
||||
const url = new URL(window.location.href);
|
||||
url.searchParams.set("listen", _this.isListening ? "0" : "1");
|
||||
url.searchParams.set("t", Math.floor(this.currentTime));
|
||||
return url.pathname + url.search;
|
||||
},
|
||||
isEmbed(_this) {
|
||||
|
|
Loading…
Reference in a new issue