diff options
author | Diogo Sousa <diogogsousa@gmail.com> | 2013-07-09 23:11:28 +0100 |
---|---|---|
committer | Diogo Sousa <diogogsousa@gmail.com> | 2013-07-09 23:11:28 +0100 |
commit | 7101b7b864df280059750c0de4d6b9d41e907122 (patch) | |
tree | e294b2b2d5e7e08c744bd8ec891fc28543d17790 /src/common/dcc.c | |
parent | 98aa62f637d4ced952a168cb19f8d2fb038c6a16 (diff) |
Now hexchat_hook_server_attrs() and hexchat_hook_print_attrs() is called
when it should. This should close #661.
Diffstat (limited to 'src/common/dcc.c')
-rw-r--r-- | src/common/dcc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/dcc.c b/src/common/dcc.c index c0527510..1137c444 100644 --- a/src/common/dcc.c +++ b/src/common/dcc.c @@ -548,7 +548,8 @@ dcc_chat_line (struct DCC *dcc, char *line) for (i = 5; i < PDIWORDS; i++) word[i] = "\000"; - ret = plugin_emit_print (sess, word); + ret = plugin_emit_print (sess, word) + + plugin_emit_print_attrs (sess, word, 0); /* did the plugin close it? */ if (!g_slist_find (dcc_list, dcc)) |