mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-06 02:33:26 +02:00
Merge pull request #91 from Armored-Dragon/fix/flyAvatar2-type-error
Fix type error in flyAvatar 2
This commit is contained in:
commit
30a79c2a58
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