summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-09-24 16:19:29 +0100
committerErik Johnston <erik@matrix.org>2014-09-24 16:19:29 +0100
commit327dcc98e378afb6c0d340017268dafbc9d0af17 (patch)
tree22c5a1562656857513baad2cec072041a42bdf52 /synapse/api
parentSYN-70: Fix typo (diff)
downloadsynapse-327dcc98e378afb6c0d340017268dafbc9d0af17.tar.xz
SYN-70: And fix another bug where I can't type
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py
index 80fe5d925d..5321864d51 100644
--- a/synapse/api/auth.py
+++ b/synapse/api/auth.py
@@ -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: