diff options
author | Aaron Raimist <aaron@raim.ist> | 2019-08-26 21:01:47 -0500 |
---|---|---|
committer | Aaron Raimist <aaron@raim.ist> | 2019-08-26 21:01:56 -0500 |
commit | e8e3e033eea2947c3746005f876afca55c601f1d (patch) | |
tree | 5348d0faab37d35ff1247ee6a0d44350494fee42 /synapse/rest | |
parent | Propagate opentracing contexts through EDUs (#5852) (diff) | |
download | synapse-e8e3e033eea2947c3746005f876afca55c601f1d.tar.xz |
public_base_url is actually public_baseurl
Signed-off-by: Aaron Raimist <aaron@raim.ist>
Diffstat (limited to 'synapse/rest')
-rw-r--r-- | synapse/rest/well_known.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/well_known.py b/synapse/rest/well_known.py index 5e8fda4b65..20177b44e7 100644 --- a/synapse/rest/well_known.py +++ b/synapse/rest/well_known.py @@ -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 |