mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Use-current-site-in-playlist.txt
This commit is contained in:
parent
c607faafd5
commit
e25fc85b71
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ export default {
|
||||||
downloadPlaylistAsTxt() {
|
downloadPlaylistAsTxt() {
|
||||||
var data = "";
|
var data = "";
|
||||||
this.playlist.relatedStreams.forEach(element => {
|
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");
|
this.download(data, this.playlist.name + ".txt", "text/plain");
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue