From 75cb47f01839a8988ddc6b15e74a38387f41960c Mon Sep 17 00:00:00 2001 From: Armored Dragon Date: Sat, 6 Jul 2024 09:51:07 -0500 Subject: [PATCH] Fix type error. Signed-off-by: Armored Dragon --- applications/flyAvatar/flyAvatar.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/flyAvatar/flyAvatar.html b/applications/flyAvatar/flyAvatar.html index 2d22fbc..c03f33c 100644 --- a/applications/flyAvatar/flyAvatar.html +++ b/applications/flyAvatar/flyAvatar.html @@ -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;