From 285a67101514f9bfd3722e9f3603375789f45089 Mon Sep 17 00:00:00 2001 From: Bnyro Date: Tue, 2 Aug 2022 10:16:18 +0200 Subject: [PATCH] fix --- 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 7c320ffe..94543989 100644 --- a/src/components/PlaylistPage.vue +++ b/src/components/PlaylistPage.vue @@ -141,7 +141,7 @@ export default { this.playlist.relatedStreams.forEach(element => { data += "https://piped.kavin.rocks" + element.url + "\n"; }); - this.download(data, this.playlist.name + ".txt"); + this.download(data, this.playlist.name + ".txt", "text/plain"); }, }, };