Spell "domain" correctly

s/domian/domain/g
This commit is contained in:
Mark Haines 2016-05-16 19:17:03 +01:00
parent 2d98c960ec
commit 1a3a2002ff
6 changed files with 19 additions and 19 deletions

View file

@ -21,7 +21,7 @@ from ._base import SQLBaseStore
from synapse.util.caches.descriptors import cached, cachedInlineCallbacks
from synapse.api.constants import Membership
from synapse.types import get_domian_from_id
from synapse.types import get_domain_from_id
import logging
@ -273,7 +273,7 @@ class RoomMemberStore(SQLBaseStore):
room_id, membership=Membership.JOIN
)
joined_domains = set(get_domian_from_id(r["user_id"]) for r in rows)
joined_domains = set(get_domain_from_id(r["user_id"]) for r in rows)
return joined_domains