Use-current-site-in-playlist.txt

This commit is contained in:
amogusussy 2023-10-07 22:47:02 +01:00
parent c607faafd5
commit e25fc85b71

View file

@ -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");
},