mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
fix unauthenticated subs == null
This commit is contained in:
parent
fa88624f8b
commit
7899b4aea4
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue