@@ -57,6 +57,8 @@ import { loadI18n, setLanguage, t } from '@/i18n';
57
57
58
58
import ErrorHtmlAsset from '@assets/error.html?asset' ;
59
59
60
+ import { defaultAuthProxyConfig } from '@/plugins/auth-proxy-adapter/config' ;
61
+
60
62
import type { PluginConfig } from '@/types/plugins' ;
61
63
62
64
if ( ! is . macOS ( ) ) {
@@ -141,7 +143,24 @@ if (is.linux()) {
141
143
}
142
144
143
145
if ( config . get ( 'options.proxy' ) ) {
144
- app . commandLine . appendSwitch ( 'proxy-server' , config . get ( 'options.proxy' ) ) ;
146
+ const authProxyEnabled = config . plugins . isEnabled ( 'auth-proxy-adapter' ) ;
147
+
148
+ let proxyToUse = '' ;
149
+ if ( authProxyEnabled ) {
150
+ // Use proxy from Auth-Proxy-Adapter plugin
151
+ const authProxyConfig = deepmerge (
152
+ defaultAuthProxyConfig ,
153
+ config . get ( 'plugins.auth-proxy-adapter' ) ?? { } ,
154
+ ) as typeof defaultAuthProxyConfig ;
155
+
156
+ const { hostname, port } = authProxyConfig ;
157
+ proxyToUse = `socks5://${ hostname } :${ port } ` ;
158
+ } else if ( config . get ( 'options.proxy' ) ) {
159
+ // Use global proxy settings
160
+ proxyToUse = config . get ( 'options.proxy' ) ;
161
+ }
162
+ console . log ( LoggerPrefix , `Using proxy: ${ proxyToUse } ` ) ;
163
+ app . commandLine . appendSwitch ( 'proxy-server' , proxyToUse ) ;
145
164
}
146
165
147
166
// Adds debug features like hotkeys for triggering dev tools and reload
0 commit comments