diff --git a/app/scripts/comp/launcher/launcher-electron.js b/app/scripts/comp/launcher/launcher-electron.js index d6f2ecba..3b0c953f 100644 --- a/app/scripts/comp/launcher/launcher-electron.js +++ b/app/scripts/comp/launcher/launcher-electron.js @@ -196,7 +196,7 @@ const Launcher = { resolveProxy(url, callback) { const window = this.getMainWindow(); const session = window.webContents.session; - session.resolveProxy(url, proxy => { + session.resolveProxy(url).then(proxy => { const match = /^proxy\s+([\w\.]+):(\d+)+\s*/i.exec(proxy); proxy = match && match[1] ? { host: match[1], port: +match[2] } : null; callback(proxy); diff --git a/release-notes.md b/release-notes.md index 5fffdba6..8f693b05 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,5 +1,8 @@ Release notes ------------- +##### v1.12.2 (TBD) +`-` fixed non-working updater + ##### v1.12.1 (2019-10-27) `-` fix #1324: duplicated shortcut editor in settings `-` fix #1313: disabled code signing for macOS dmg