Fix setting autojoin in bookmarks.

This commit is contained in:
Lance Stout 2013-01-16 16:26:19 -08:00
parent ce977a7809
commit 6bac4741f6

View file

@ -50,7 +50,7 @@ class Conference(ElementBase):
def set_autojoin(self, value):
del self['autojoin']
if value in ('1', 'true', True):
self._set_sub_text('autojoin', 'true')
self._set_attr('autojoin', 'true')
class URL(ElementBase):