summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk>2010-11-09 16:05:05 -0500
committerLouis-Francis Ratté-Boulianne <louis-francis.ratte-boulianne@collabora.co.uk>2010-12-03 15:50:39 -0500
commit2dafb54fa8a6c2373e66345235671f0628d1de1c (patch)
tree1c311d94122d7223c2b186be991f33ef80e474c5
parentf36f56dc32e7399208e32e5fef46fd504b579b03 (diff)
text: unreference papyon conversation when channel is closed
-rw-r--r--butterfly/channel/text.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/butterfly/channel/text.py b/butterfly/channel/text.py
index 2673c04..8a425f0 100644
--- a/butterfly/channel/text.py
+++ b/butterfly/channel/text.py
@@ -204,6 +204,7 @@ class ButterflyTextChannel(
def Close(self):
if self._conversation is not None:
self._conversation.leave()
+ self._conversation = None
self._remove_typing_timeouts()
telepathy.server.ChannelTypeText.Close(self)