forked from MirrorHub/synapse
Merge pull request #2226 from matrix-org/erikj/domain_from_id
Speed up get_domain_from_id
This commit is contained in:
commit
11bc21b6d9
1 changed files with 3 additions and 3 deletions
|
@ -56,10 +56,10 @@ def create_requester(user_id, access_token_id=None, is_guest=False,
|
|||
|
||||
|
||||
def get_domain_from_id(string):
|
||||
try:
|
||||
return string.split(":", 1)[1]
|
||||
except IndexError:
|
||||
idx = string.find(":")
|
||||
if idx == -1:
|
||||
raise SynapseError(400, "Invalid ID: %r" % (string,))
|
||||
return string[idx + 1:]
|
||||
|
||||
|
||||
class DomainSpecificString(
|
||||
|
|
Loading…
Reference in a new issue