diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-04-23 22:57:57 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-04-23 22:57:57 +0200 |
commit | 1e08b1119ac32c6419d4a4177f982b899164fcb2 (patch) | |
tree | e9709c57fe7271dbb5744745ab3638468a7675e7 /src/plugins/relay | |
parent | fb9d6770208c7f5ecac669517bf258695baae6d5 (diff) | |
download | weechat-1e08b1119ac32c6419d4a4177f982b899164fcb2.zip |
relay: fix default value of remote options
Diffstat (limited to 'src/plugins/relay')
-rw-r--r-- | src/plugins/relay/relay-remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relay/relay-remote.c b/src/plugins/relay/relay-remote.c index 9b49bbb61..27b73ea10 100644 --- a/src/plugins/relay/relay-remote.c +++ b/src/plugins/relay/relay-remote.c @@ -488,7 +488,7 @@ relay_remote_new (const char *name, const char *url, const char *proxy, option[i] = relay_config_create_remote_option ( name, i, - (value[i]) ? value[i] : relay_remote_option_string[i]); + (value[i]) ? value[i] : relay_remote_option_default[i]); } new_remote = relay_remote_new_with_options (name, option); |