Skip to content
Snippets Groups Projects
Unverified Commit e8e3e033 authored by Aaron Raimist's avatar Aaron Raimist
Browse files

public_base_url is actually public_baseurl


Signed-off-by: default avatarAaron Raimist <aaron@raim.ist>
parent 8767b63a
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ class EmailConfig(Config):
missing.append("email." + k)
if config.get("public_baseurl") is None:
missing.append("public_base_url")
missing.append("public_baseurl")
if len(missing) > 0:
raise RuntimeError(
......
......@@ -34,7 +34,7 @@ class WellKnownBuilder(object):
self._config = hs.config
def get_well_known(self):
# if we don't have a public_base_url, we can't help much here.
# if we don't have a public_baseurl, we can't help much here.
if self._config.public_baseurl is None:
return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment