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

Use arguments for infolist "nicklist" to return only one nick or group

Format is: nick_xxx or group_xxx to return only nick/group called "xxx".
This commit is contained in:
Sebastien Helleu
2010-02-12 12:50:16 +01:00
parent 8cea059feb
commit 8d25a75200
5 changed files with 105 additions and 46 deletions
+1 -1
View File
@@ -668,7 +668,7 @@ plugin_api_infolist_get_internal (void *data, const char *infolist_name,
ptr_infolist = infolist_new ();
if (ptr_infolist)
{
if (!gui_nicklist_add_to_infolist (ptr_infolist, pointer))
if (!gui_nicklist_add_to_infolist (ptr_infolist, pointer, arguments))
{
infolist_free (ptr_infolist);
return NULL;