mirror of
https://github.com/TeamPiped/Piped.git
synced 2025-12-25 14:10:21 +00:00
Merge branch 'master' into playlist
This commit is contained in:
@@ -217,8 +217,8 @@ const mixin = {
|
||||
localStorage.setItem("localSubscriptions", JSON.stringify(localSubscriptions));
|
||||
},
|
||||
getUnauthenticatedChannels() {
|
||||
const localSubscriptions = this.getLocalSubscriptions();
|
||||
return localSubscriptions != null ? localSubscriptions.join(",") : "";
|
||||
const localSubscriptions = this.getLocalSubscriptions() ?? [];
|
||||
return localSubscriptions.join(",");
|
||||
},
|
||||
/* generate a temporary file and ask the user to download it */
|
||||
download(text, filename, type) {
|
||||
|
||||
Reference in New Issue
Block a user