Look for keys on the right objects

This commit is contained in:
Daniel Wagner-Hall 2015-10-15 13:10:30 +01:00
parent f38df51e8d
commit 643b5fcdc8
3 changed files with 6 additions and 4 deletions

View file

@ -51,7 +51,7 @@ def join_has_third_party_invite(content):
def extract_join_keys(src):
return {
key: value
for key, value in src["third_party_invite"].items()
for key, value in src.items()
if key in JOIN_KEYS
}