From 77e0c07553e512faab1aeb12c0c6cf3261223f7d Mon Sep 17 00:00:00 2001 From: projectdx Date: Tue, 6 Jan 2026 20:17:58 +0900 Subject: [PATCH] Fix: Syntex error in Jinja2 variable (quote conflict) --- info.yaml | 2 +- templates/gommi_downloader_manager_queue_list.html | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/info.yaml b/info.yaml index eaff971..f35c39d 100644 --- a/info.yaml +++ b/info.yaml @@ -1,6 +1,6 @@ name: GDM package_name: gommi_downloader_manager -version: '0.1.13' +version: '0.1.14' description: FlaskFarm 범용 다운로더 큐 - YouTube, 애니24, 링크애니, Anilife 지원 developer: projectdx home: https://gitea.yommi.duckdns.org/projectdx/gommi_downloader_manager diff --git a/templates/gommi_downloader_manager_queue_list.html b/templates/gommi_downloader_manager_queue_list.html index a97ade8..43fca56 100644 --- a/templates/gommi_downloader_manager_queue_list.html +++ b/templates/gommi_downloader_manager_queue_list.html @@ -408,7 +408,7 @@ function refreshList(silent) { $.ajax({ - url: '/{{ arg['package_name'] }}/ajax/{{ arg['module_name'] }}/list', + url: '/{{ arg["package_name"] }}/ajax/{{ arg["module_name"] }}/list', type: 'POST', dataType: 'json', data: {}, @@ -534,7 +534,7 @@ function cancelDownload(id) { $.ajax({ - url: '/{{ arg['package_name'] }}/ajax/{{ arg['module_name'] }}/cancel', + url: '/{{ arg["package_name"] }}/ajax/{{ arg["module_name"] }}/cancel', type: 'POST', data: { id: id }, dataType: 'json', @@ -550,7 +550,7 @@ function resetList() { if (!confirm('Are you sure you want to clear the entire queue?')) return; $.ajax({ - url: '/{{ arg['package_name'] }}/ajax/{{ arg['module_name'] }}/reset', + url: '/{{ arg["package_name"] }}/ajax/{{ arg["module_name"] }}/reset', type: 'POST', data: {}, dataType: 'json', @@ -566,7 +566,7 @@ // Socket Init try { if (typeof io !== 'undefined') { - const socket = io.connect('/{{ arg['package_name'] }}/queue'); + const socket = io.connect('/{{ arg["package_name"] }}/queue'); socket.on('download_status', function(data) { updateDownloadCard(data); });