Fix type error.

Signed-off-by: Armored Dragon <publicmail@armoreddragon.com>
This commit is contained in:
Armored Dragon 2024-07-06 09:51:07 -05:00
parent f3dbaf65bd
commit 75cb47f018
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

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;