diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2007-08-20 08:37:31 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2007-08-20 08:37:31 +0000 |
commit | 69bd50d74cbe22cce977e8eb81b402f58a802760 (patch) | |
tree | 5964dc02a59328770a5d34ecbdae063dbab5cad8 /src/common/weeconfig.c | |
parent | fb8bae3c78fe8e0e8deeab5eec4e8f878b58a39f (diff) | |
download | weechat-69bd50d74cbe22cce977e8eb81b402f58a802760.zip |
Fixed server option "command_delay": does not freeze WeeChat any more
Diffstat (limited to 'src/common/weeconfig.c')
-rw-r--r-- | src/common/weeconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index c136010f1..d9e64f1a6 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -1049,7 +1049,7 @@ t_config_option weechat_options_server[] = "", NULL, NULL, &(cfg_server.command), NULL }, { "server_command_delay", N_("delay (in seconds) after command was executed"), N_("delay (in seconds) after command was executed (example: give some time for authentication)"), - OPTION_TYPE_INT, 0, 5, 0, + OPTION_TYPE_INT, 0, 3600, 0, NULL, NULL, &(cfg_server.command_delay), NULL, NULL }, { "server_autojoin", N_("list of channels to join when connected to server"), N_("comma separated list of channels to join when connected to server (example: \"#chan1,#chan2,#chan3 key1,key2\")"), |