summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
authorAbdullah Osama <abdullahosama15@gmail.com>2022-10-11 14:42:11 +0200
committerGitHub <noreply@github.com>2022-10-11 12:42:11 +0000
commita9934d48c193bc963e3d232ed83c5cbfa3e5152d (patch)
tree5d7e8a8f05164df5781491b399896f8685dd2611 /synapse/util
parentEnable dependabot for Rust dependencies (#14132) (diff)
downloadsynapse-a9934d48c193bc963e3d232ed83c5cbfa3e5152d.tar.xz
Making parse_server_name more consistent (#14007)
Fixes #12122
Diffstat (limited to 'synapse/util')
-rw-r--r--synapse/util/stringutils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/util/stringutils.py b/synapse/util/stringutils.py
index 27a363d7e5..4961fe9313 100644
--- a/synapse/util/stringutils.py
+++ b/synapse/util/stringutils.py
@@ -86,7 +86,7 @@ def parse_server_name(server_name: str) -> Tuple[str, Optional[int]]:
         ValueError if the server name could not be parsed.
     """
     try:
-        if server_name[-1] == "]":
+        if server_name and server_name[-1] == "]":
             # ipv6 literal, hopefully
             return server_name, None
 
@@ -123,7 +123,7 @@ def parse_and_validate_server_name(server_name: str) -> Tuple[str, Optional[int]
     # that nobody is sneaking IP literals in that look like hostnames, etc.
 
     # look for ipv6 literals
-    if host[0] == "[":
+    if host and host[0] == "[":
         if host[-1] != "]":
             raise ValueError("Mismatched [...] in server name '%s'" % (server_name,))