mirror of
https://github.com/TeamPiped/Piped.git
synced 2025-08-09 20:24:09 +00:00
fix unauthenticated subs == null
This commit is contained in:
@@ -218,7 +218,7 @@ const mixin = {
|
||||
},
|
||||
getUnauthenticatedChannels() {
|
||||
const localSubscriptions = this.getLocalSubscriptions();
|
||||
return localSubscriptions.join(",");
|
||||
return localSubscriptions != null ? localSubscriptions.join(",") : "";
|
||||
},
|
||||
download(text, filename) {
|
||||
var element = document.createElement("a");
|
||||
|
Reference in New Issue
Block a user