We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfbd367 commit 3e7fb5cCopy full SHA for 3e7fb5c
python/pyplugin_installer/installer_data.py
@@ -179,7 +179,7 @@ def __init__(self,*args):
179
if settings.value("/proxyEnabled", False, type=bool):
180
self.proxy=QNetworkProxy()
181
proxyType = settings.value( "/proxyType", "0", type=unicode)
182
- if len(args)>0 and settings.value("/proxyExcludedUrls","", type=unicode).contains(args[0]):
+ if len(args) > 0 and args[0] in settings.value("/proxyExcludedUrls","", type=unicode):
183
proxyType = "NoProxy"
184
if proxyType in ["1","Socks5Proxy"]: self.proxy.setType(QNetworkProxy.Socks5Proxy)
185
elif proxyType in ["2","NoProxy"]: self.proxy.setType(QNetworkProxy.NoProxy)
0 commit comments