diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-09-05 11:27:12 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-09-05 11:27:12 +0100 |
commit | 41e0c00fd22d1cdace2040be5912d64f51f12ab8 (patch) | |
tree | 12676e9f2b398131ef7dbf5b78b381d07c6f00cc /irc_im.c | |
parent | 52d63dc804571c63069a7c1e42e8c3f1f2a76527 (diff) |
Fixing handling of (Jabber) chatroom topic changes done by the user.
Diffstat (limited to 'irc_im.c')
-rw-r--r-- | irc_im.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -797,9 +797,9 @@ static gboolean bee_irc_channel_chat_topic( irc_channel_t *ic, const char *new ) char *topic = g_strdup( new ); c->ic->acc->prpl->chat_topic( c, topic ); g_free( topic ); - return TRUE; } + /* Whatever happened, the IM module should ack the topic change. */ return FALSE; } |