fix unauthenticated subs == null

This commit is contained in:
Bnyro 2022-08-02 10:08:50 +02:00
parent fa88624f8b
commit 7899b4aea4
1 changed files with 1 additions and 1 deletions

View File

@ -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");