From 8e661c3780d783527a55882f5b9eefe1cd2f61b8 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 3 Jun 2011 16:07:29 -0400 Subject: [PATCH] telepathyContact: Fix presence information An incorrect signal handler signature broke presence handling in master. https://bugzilla.gnome.org/show_bug.cgi?id=651138 --- js/ui/telepathyClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js index 9c00cf938..42fd16f8f 100644 --- a/js/ui/telepathyClient.js +++ b/js/ui/telepathyClient.js @@ -327,7 +327,7 @@ Source.prototype = { this._channel.send_message_async(msg, 0, null); }, - _presenceChanged: function (contact, presence, type, status, message) { + _presenceChanged: function (contact, presence, status, message) { let msg, shouldNotify, title; if (this._presence == presence)