mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Revert "Make frontend URL in txt playlists overridable"
This reverts commit e58b4f5409
.
This commit is contained in:
parent
e58b4f5409
commit
85b92407db
2 changed files with 1 additions and 2 deletions
1
.env
1
.env
|
@ -1,5 +1,4 @@
|
|||
VITE_PIPED_API=https://pipedapi.kavin.rocks
|
||||
VITE_PIPED_PROXY=https://pipedproxy.kavin.rocks
|
||||
VITE_PIPED_INSTANCES=https://piped-instances.kavin.rocks/
|
||||
VITE_PIPED_FRONTEND=https://piped.video
|
||||
VITE_BASE_URL=/
|
||||
|
|
|
@ -158,7 +158,7 @@ export default {
|
|||
downloadPlaylistAsTxt() {
|
||||
var data = "";
|
||||
this.playlist.relatedStreams.forEach(element => {
|
||||
data += import.meta.env.VITE_PIPED_FRONTEND + element.url + "\n";
|
||||
data += "https://piped.video" + element.url + "\n";
|
||||
});
|
||||
this.download(data, this.playlist.name + ".txt", "text/plain");
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue