Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/activity.py b/activity.py
index 7fa835c..6dcb10f 100644
--- a/activity.py
+++ b/activity.py
@@ -17,7 +17,7 @@
from gi.repository import Gtk
from gi.repository import Gdk
import logging
-import cjson
+import json
import math
from gettext import gettext as _
@@ -164,7 +164,7 @@ class Chat(activity.Activity):
"""Handle a private invite from a non-sugar3 XMPP client."""
if self.shared_activity or self.text_channel:
return
- bus_name, connection, channel = cjson.decode(tp_channel)
+ bus_name, connection, channel = json.loads(tp_channel)
logger.debug('GOT XMPP: %s %s %s', bus_name, connection,channel)
Connection( bus_name, connection, ready_handler=lambda conn: \
self._one_to_one_connection_ready_cb(bus_name, channel, conn))