diff options
Diffstat (limited to 'libpurple/protocols/jabber/presence.c')
-rw-r--r-- | libpurple/protocols/jabber/presence.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpurple/protocols/jabber/presence.c b/libpurple/protocols/jabber/presence.c index e902354eeb..0542656fa3 100644 --- a/libpurple/protocols/jabber/presence.c +++ b/libpurple/protocols/jabber/presence.c @@ -265,6 +265,10 @@ xmlnode *jabber_presence_create_js(JabberStream *js, JabberBuddyState state, con xmlnode_set_namespace(c, "http://jabber.org/protocol/caps"); xmlnode_set_attrib(c, "node", CAPS0115_NODE); xmlnode_set_attrib(c, "ver", VERSION); +#ifdef USE_FARSIGHT + /* Make sure this is 'voice-v1', or you won't be able to talk to Google Talk */ + xmlnode_set_attrib(c, "ext", "voice-v1"); +#endif if(js != NULL) { /* add the extensions */ |