From 91693241481eff89e112fc4c8443e49430d22ec8 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Wed, 17 Jun 2026 14:02:04 +0000 Subject: [PATCH] fix: escape apostrophe in jarvis-protocols.js line 1432 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'What's playing on Jellyfin' — the apostrophe inside the single-quoted string caused a SyntaxError that prevented the entire file from loading, making checkArcStatus and all other panel functions undefined. Co-Authored-By: Claude Sonnet 4.6 --- public_html/assets/js/jarvis-protocols.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/assets/js/jarvis-protocols.js b/public_html/assets/js/jarvis-protocols.js index f381aa7..0ab625e 100644 --- a/public_html/assets/js/jarvis-protocols.js +++ b/public_html/assets/js/jarvis-protocols.js @@ -1429,7 +1429,7 @@ const _PALETTE_COMMANDS = [ { label: 'Daily briefing', q: 'daily briefing', group: 'Planner' }, { label: 'My tasks today', q: 'my tasks today', group: 'Planner' }, { label: 'My calendar', q: 'my calendar', group: 'Planner' }, - { label: 'What's playing on Jellyfin', q: 'what is playing on Jellyfin', group: 'Media' }, + { label: "What's playing on Jellyfin", q: 'what is playing on Jellyfin', group: 'Media' }, { label: 'Pause Jellyfin', q: 'pause Jellyfin', group: 'Media' }, { label: 'Next track on Jellyfin', q: 'next track on Jellyfin', group: 'Media' }, { label: 'Stop Jellyfin', q: 'stop Jellyfin', group: 'Media' },