From 87c48feca23acf755558ef8bb766eff3582a40da Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Fri, 23 Aug 2013 15:48:50 +0200 Subject: [PATCH] Show if the proxy could not be set. --- src/setting.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/setting.c b/src/setting.c index 1d7f97b..11d6cd7 100644 --- a/src/setting.c +++ b/src/setting.c @@ -633,6 +633,9 @@ static gboolean proxy(const Setting *s, const SettingType type) soup_uri_free(proxy_uri); g_free(proxy_new); + } else { + /* inform the customer that the proxy could not be set */ + return false; } } else { g_object_set(vb.session, "proxy-uri", NULL, NULL); -- 2.20.1