0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-10 20:02:21 +02:00
This commit is contained in:
Erik Johnston 2017-06-01 13:11:38 +01:00
parent 8be6fd95a3
commit 7233341eac

View file

@ -346,7 +346,7 @@ class UserDirectoyHandler(object):
Returns:
None if the field in the events either both match `public_value`
neither do, i.e. there has been no change.
or if neither do, i.e. there has been no change.
True if it didnt match `public_value` but now does
False if it did match `public_value` but now doesn't
"""
@ -366,10 +366,10 @@ class UserDirectoyHandler(object):
value = None
if prev_event:
prev_value = prev_event.content.get(key_name, None)
prev_value = prev_event.content.get(key_name)
if event:
value = event.content.get(key_name, None)
value = event.content.get(key_name)
logger.debug("prev_value: %r -> value: %r", prev_value, value)