From 75cb47f01839a8988ddc6b15e74a38387f41960c Mon Sep 17 00:00:00 2001 From: Armored Dragon Date: Sat, 6 Jul 2024 09:51:07 -0500 Subject: [PATCH 1/2] 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; From 8b7e5c0155e9959e99307521eea90b079b307c1e Mon Sep 17 00:00:00 2001 From: Armored Dragon Date: Sat, 6 Jul 2024 10:10:28 -0500 Subject: [PATCH 2/2] Disable nametags from visibility. Signed-off-by: Armored Dragon --- applications/metadata.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/metadata.js b/applications/metadata.js index 6507bad..2398a11 100644 --- a/applications/metadata.js +++ b/applications/metadata.js @@ -82,7 +82,7 @@ var metadata = { "applications": "caption": "REFRESH" }, { - "isActive": true, + "isActive": false, "directory": "nametags", "name": "Nametags", "description": "Display users' display names above their heads.",