From 6f515f23277b6d84c773e98382d35fde95b12272 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 28 Jun 2011 12:06:54 -0400 Subject: [PATCH] telepathyClient: Add another GAsyncReadyCallback This is better for memory management, and we'll see any errors this way, which we may eventually want to do something with. We need to make this change because gjs recently started checking (allow-none) on callbacks. --- js/ui/telepathyClient.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/ui/telepathyClient.js b/js/ui/telepathyClient.js index 14e1d4e47..644f893e6 100644 --- a/js/ui/telepathyClient.js +++ b/js/ui/telepathyClient.js @@ -149,7 +149,9 @@ Client.prototype = { if (this._tpClient.is_handling_channel(channel)) { // The chat box has been destroyed so it can't // handle the channel any more. - channel.close_async(null); + channel.close_async(function(src, result) { + channel.close_finish(result); + }); } delete this._sources[channel.get_object_path()];