This commit is contained in:
Erik Johnston 2017-05-31 16:50:57 +01:00
parent f091061711
commit f9791498ae

View file

@ -304,10 +304,10 @@ class UserDirectoyHandler(object):
`shared` to `world_readable` (`public_value`). `shared` to `world_readable` (`public_value`).
Returns: Returns:
None if the field in the events either both match `public_value` o None if the field in the events either both match `public_value`
neither do, i.e. there has been no change. neither do, i.e. there has been no change.
True if it didnt match `public_value` but now does True if it didnt match `public_value` but now does
Falsse if it did match `public_value` but now doesn't False if it did match `public_value` but now doesn't
""" """
prev_event = None prev_event = None
event = None event = None
@ -320,18 +320,18 @@ class UserDirectoyHandler(object):
if not event and not prev_event: if not event and not prev_event:
defer.returnValue(None) defer.returnValue(None)
prev_hist_vis = None prev_value = None
hist_vis = None value = None
if prev_event: if prev_event:
prev_hist_vis = prev_event.content.get(key_name, None) prev_value = prev_event.content.get(key_name, None)
if event: if event:
hist_vis = event.content.get(key_name, None) value = event.content.get(key_name, None)
if hist_vis == public_value and prev_hist_vis != public_value: if value == public_value and prev_value != public_value:
defer.returnValue(True) defer.returnValue(True)
elif hist_vis != public_value and prev_hist_vis == public_value: elif value != public_value and prev_value == public_value:
defer.returnValue(False) defer.returnValue(False)
else: else:
defer.returnValue(None) defer.returnValue(None)