summaryrefslogtreecommitdiff
path: root/finch/finch.c
diff options
context:
space:
mode:
authorMarcus Lundblad <malu@pidgin.im>2009-02-09 21:21:18 +0000
committerMarcus Lundblad <malu@pidgin.im>2009-02-09 21:21:18 +0000
commitf3e1ea2001fc07e4689fe66a750ce403b4e6382e (patch)
tree5f0e559836191fd1d4c4d005ff43e67e77be25ec /finch/finch.c
parent093888a28273f03db8c5fd562b05bb4abd5829a7 (diff)
downloadpidgin-f3e1ea2001fc07e4689fe66a750ce403b4e6382e.tar.gz
Set a value "type" in the ui_info hash table
Set client type in resonse to an XMPP XEP-0115 request (client type). Makes Pidgin report itself as "pc", Finch as "console" Display emblems on XMPP buddies corresponding to their client type (if available). Currently there is no emblem for "console"
Diffstat (limited to 'finch/finch.c')
-rw-r--r--finch/finch.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/finch/finch.c b/finch/finch.c
index fe96d76deb..0cc95f65f0 100644
--- a/finch/finch.c
+++ b/finch/finch.c
@@ -65,6 +65,7 @@ static GHashTable *finch_ui_get_info(void)
g_hash_table_insert(ui_info, "version", VERSION);
g_hash_table_insert(ui_info, "website", "http://pidgin.im");
g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im");
+ g_hash_table_insert(ui_info, "type", "console");
}
return ui_info;