mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 10:18:23 +00:00
fix unauthenticated subs == null
This commit is contained in:
parent
fa88624f8b
commit
7899b4aea4
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user