Merge pull request #91 from Armored-Dragon/fix/flyAvatar2-type-error

Fix type error in flyAvatar 2
This commit is contained in:
Dale Glass 2024-07-06 21:46:25 +02:00 committed by GitHub
commit 30a79c2a58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,7 +28,7 @@
messageObj = JSON.parse(message);
if (messageObj.channel === channel) {
if (messageObj.action === "FLY-AVATAR-URL") {
flyAvatarUrl = messageObj.url;
flyAvatarUrl = messageObj.url || [];
bookmarks = messageObj.bookmarks;
flyAvatarSwitch = messageObj.mainSwitch;
document.getElementById("mainSwitch").checked = flyAvatarSwitch;