1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 04:16:38 +02:00

relay: fix send of signals "relay_client_xxx" (closes #214)

The signals about relay client status changes were sent only when the client
has ended. Now it is went on any status change.
This commit is contained in:
Sébastien Helleu
2014-09-26 04:09:25 +02:00
parent c1aa51fa9c
commit c99df96ebd
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -51,6 +51,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
* irc: fix translation of CTCP PING reply (closes #137)
* guile: fix compilation with Guile < 2.0.4 (closes #198)
* perl: fix detection of Perl >= 5.20 with autotools
* relay: fix send of signals "relay_client_xxx" (closes #214)
* script: fix crash on "/script update" if a script detail is displayed in
buffer (closes #177)
* trigger: do not allow any changes on a trigger when it is currently running
+2 -2
View File
@@ -1374,10 +1374,10 @@ relay_client_set_status (struct t_relay_client *client,
gnutls_deinit (client->gnutls_sess);
#endif
}
relay_client_send_signal (client);
}
relay_client_send_signal (client);
relay_buffer_refresh (WEECHAT_HOTLIST_MESSAGE);
}