diff --git a/info.yaml b/info.yaml index 6f824f9..514a10f 100644 --- a/info.yaml +++ b/info.yaml @@ -1,6 +1,6 @@ name: GDM package_name: gommi_downloader_manager -version: '0.1.10' +version: '0.1.11' 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 99a55e3..3993ba9 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: `/${PACKAGE_NAME}/ajax/${MODULE_NAME}/list`, + url: `/${{ arg['package_name'] }}/ajax/${{ arg['module_name'] }}/list`, type: 'POST', dataType: 'json', data: {}, @@ -566,7 +566,7 @@ // Socket Init try { if (typeof io !== 'undefined') { - const socket = io.connect(`/${PACKAGE_NAME}/queue`); + const socket = io.connect(`/${{ arg['package_name'] }}/queue`); socket.on('download_status', function(data) { updateDownloadCard(data); });