mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 02:08:21 +00:00
Merge pull request #1200 from Ikkibird/Ikkibird-fix-1194
Use a relative url with router-link (fixes: #1194)
This commit is contained in:
commit
8e306ab311
@ -251,7 +251,7 @@ export default {
|
||||
toggleListenUrl(_this) {
|
||||
const url = new URL(window.location.href);
|
||||
url.searchParams.set("listen", _this.isListening ? "0" : "1");
|
||||
return url.href;
|
||||
return url.pathname + url.search;
|
||||
},
|
||||
isEmbed(_this) {
|
||||
return String(_this.$route.path).indexOf("/embed/") == 0;
|
||||
|
Loading…
Reference in New Issue
Block a user