From e25fc85b715383cc96f3fc854495fe5e966b6449 Mon Sep 17 00:00:00 2001 From: amogusussy Date: Sat, 7 Oct 2023 22:47:02 +0100 Subject: [PATCH] Use-current-site-in-playlist.txt --- src/components/PlaylistPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/PlaylistPage.vue b/src/components/PlaylistPage.vue index 1ca66bf1..c535cc45 100644 --- a/src/components/PlaylistPage.vue +++ b/src/components/PlaylistPage.vue @@ -158,7 +158,7 @@ export default { downloadPlaylistAsTxt() { var data = ""; this.playlist.relatedStreams.forEach(element => { - data += "https://piped.video" + element.url + "\n"; + data += window.location.origin + element.url + "\n"; }); this.download(data, this.playlist.name + ".txt", "text/plain"); },