Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-10-30 16:20:37 (GMT)
committer Simon McVittie <simon.mcvittie@collabora.co.uk>2007-10-30 16:20:37 (GMT)
commit11d81031083e12915ded1b60c83c7a2d0b971020 (patch)
tree4595846933bb5416296450341e84f1eb3324798b
parent7786e64de693879b15dfa24d2e8c19372ce67c94 (diff)
Actually set registered = True, again (#4537)
-rw-r--r--NEWS2
-rw-r--r--src/buddy.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 69cdb11..97b8630 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+* #4537: actually set registered = True (again) (smcv)
+
Snapshot 25577b1486
* #4027: associate activity debug messages with the relevant activity (smcv)
diff --git a/src/buddy.py b/src/buddy.py
index 5025f8d..1f7a0ca 100644
--- a/src/buddy.py
+++ b/src/buddy.py
@@ -988,7 +988,7 @@ class ShellOwner(GenericOwner):
"""Handle notification that we have been registered"""
if value:
profile = get_profile()
- profile.jabber_registered
+ profile.jabber_registered = True
profile.save()
def _icon_changed_cb(self, icon):