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