diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-10-18 22:06:39 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-10-18 22:06:39 +0200 |
commit | b51beb67663f85f137aaef77d2cfa611db2803ec (patch) | |
tree | 54132e84c827cbfc3c2ceb0e9958935ed3d42bce /src | |
parent | 83f3e93402f60da0c59a89f6b587c7ddf3dc214c (diff) | |
download | weechat-b51beb67663f85f137aaef77d2cfa611db2803ec.zip |
irc: change default value of option irc.network.lag_reconnect to 300 (closes #818)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/irc/irc-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index d4acd7ba3..668bfea01 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -3139,7 +3139,7 @@ irc_config_init () N_("reconnect to server if lag is greater than or equal to this value " "(in seconds, 0 = never reconnect); this value must be less than or " "equal to irc.network.lag_max"), - NULL, 0, 3600 * 24 * 7, "0", NULL, 0, + NULL, 0, 3600 * 24 * 7, "300", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); irc_config_network_lag_refresh_interval = weechat_config_new_option ( irc_config_file, ptr_section, |