업데이트 오류 수정

This commit is contained in:
Macbook
2026-06-17 10:21:58 +09:00
parent f56a958c57
commit 05d33bb410
6 changed files with 29 additions and 6 deletions
+3 -1
View File
@@ -27,7 +27,9 @@ conf.bundle.createUpdaterArtifacts = enable;
conf.plugins = conf.plugins || {};
conf.plugins.updater = conf.plugins.updater || {};
conf.plugins.updater.endpoints = (conf.plugins.updater.endpoints || [])
.map((u) => String(u).replace(/^http:\\/\\/exdev\\.co\\.kr\\//, 'https://stock.exdev.co.kr/'));
.map((u) => String(u)
.replace(/^http:\\/\\/exdev\\.co\\.kr\\//, 'https://stock.exdev.co.kr/')
.replace(/^https:\\/\\/exdev\\.co\\.kr\\//, 'https://stock.exdev.co.kr/'));
if (!conf.plugins.updater.endpoints.length) {
conf.plugins.updater.endpoints = ['https://stock.exdev.co.kr/desktop/updates/latest.json'];
}