We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In core/proxy.py:
26 excludes = settings.value("proxy/proxyExcludedUrls", "") 27 if hasattr(excludes, 'isNull') and excludes.isNull(): 28 excludes = [] 29 else: 30 excludes = excludes.split("|")
If excludes in None then line 30 throws an exception. fix to:
26 excludes = settings.value("proxy/proxyExcludedUrls", "") 27 if not excludes or (hasattr(excludes, 'isNull') and excludes.isNull()): 28 excludes = [] 29 else: 30 excludes = excludes.split("|")
The text was updated successfully, but these errors were encountered:
Anterior to the duplicated #88, but less documented. Please follow up the new one.
Sorry, something went wrong.
No branches or pull requests
In core/proxy.py:
26 excludes = settings.value("proxy/proxyExcludedUrls", "")
27 if hasattr(excludes, 'isNull') and excludes.isNull():
28 excludes = []
29 else:
30 excludes = excludes.split("|")
If excludes in None then line 30 throws an exception.
fix to:
26 excludes = settings.value("proxy/proxyExcludedUrls", "")
27 if not excludes or (hasattr(excludes, 'isNull') and excludes.isNull()):
28 excludes = []
29 else:
30 excludes = excludes.split("|")
Environment
The text was updated successfully, but these errors were encountered: