diff --git a/src/common/helpers.py b/src/common/helpers.py index 821224283..57f80fa11 100644 --- a/src/common/helpers.py +++ b/src/common/helpers.py @@ -1432,6 +1432,8 @@ def get_proxy_info(account): if p: proxy = {} proxyptr = gajim.config.get_per('proxies', p) + if not proxyptr: + return proxy for key in proxyptr.keys(): proxy[key] = proxyptr[key][1] return proxy @@ -1542,4 +1544,4 @@ def download_image(account, attrs): proxy = get_proxy_info(account) if proxy and proxy['type'] in ('http', 'socks5'): return _get_img_proxy(attrs, proxy) - return _get_img_direct(attrs) \ No newline at end of file + return _get_img_direct(attrs)