mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-05 10:46:56 +02:00
Fix type error.
Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
parent
f3dbaf65bd
commit
75cb47f018
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue