1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

core: remove warning about proxy not found for option weechat.network.proxy_curl on startup

Proxies are not yet fully loaded (when reading weechat.conf), so the warning
is not displayed on startup, but only when option is changed.
This commit is contained in:
Sebastien Helleu
2013-10-06 11:34:49 +02:00
parent 66a0eb7a0b
commit 7364853c9d
+1 -1
View File
@@ -740,7 +740,7 @@ config_check_proxy_curl (void *data, struct t_config_option *option,
(void) data;
(void) option;
if (value && value[0] && !proxy_search (value))
if (gui_init_ok && value && value[0] && !proxy_search (value))
{
gui_chat_printf (NULL,
_("%sWarning: proxy \"%s\" does not exist (you can "