mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 17:46:08 +03:00
SYN-70: And fix another bug where I can't type
This commit is contained in:
parent
87deaf1658
commit
327dcc98e3
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ class Auth(object):
|
|||
}
|
||||
|
||||
removed = set(old_people.keys()) - set(new_people.keys())
|
||||
added = set(old_people.keys()) - set(new_people.keys())
|
||||
added = set(new_people.keys()) - set(old_people.keys())
|
||||
same = set(old_people.keys()) & set(new_people.keys())
|
||||
|
||||
for r in removed:
|
||||
|
|
Loading…
Reference in a new issue