diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-02-10 22:30:03 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-04-07 13:16:47 +0200 |
commit | 786f889251e6a962a1fdceef7e784fb3408ec974 (patch) | |
tree | 8d10011110027df2c988001e9c1ceb69bcc34bd8 /src/plugins/relay/api/relay-api-protocol.c | |
parent | a89bc85dc0706517f888ff43dff5e147b034744c (diff) | |
download | weechat-786f889251e6a962a1fdceef7e784fb3408ec974.zip |
relay: add command `/remote`, add remote configuration in relay.conf (issue #2066)
Diffstat (limited to 'src/plugins/relay/api/relay-api-protocol.c')
-rw-r--r-- | src/plugins/relay/api/relay-api-protocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relay/api/relay-api-protocol.c b/src/plugins/relay/api/relay-api-protocol.c index ac3b8f13e..265e0df3b 100644 --- a/src/plugins/relay/api/relay-api-protocol.c +++ b/src/plugins/relay/api/relay-api-protocol.c @@ -808,7 +808,7 @@ relay_api_protocol_recv_http (struct t_relay_client *client) { NULL, NULL, 0, 0, 0, NULL }, }; - if (!client->http_req || RELAY_CLIENT_HAS_ENDED(client)) + if (!client->http_req || RELAY_STATUS_HAS_ENDED(client->status)) return; /* display debug message */ |