From bf2ba83cd562a49e66cd7c7f3a76f99ecb108553 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 17 Jul 2011 15:18:33 -0400 Subject: [PATCH] telepathyClient: Fix undefined variable https://bugzilla.gnome.org/show_bug.cgi?id=654791 --- 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 d0c92ab26..1d91ba468 100644 --- a/js/ui/telepathyClient.js +++ b/js/ui/telepathyClient.js @@ -248,7 +248,7 @@ Client.prototype = { Lang.bind(this, function(dispatchOp, result) { try { dispatchOp.claim_with_finish(result); - this._handlingChannels(account, conn, channels); + this._handlingChannels(account, conn, [channel]); } catch (err) { throw new Error('Failed to Claim channel: ' + err); }}));