diff options
author | Ivan Vilata-i-Balaguer <ivan@selidor.net> | 2020-01-22 02:32:52 -0500 |
---|---|---|
committer | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-01-22 07:32:52 +0000 |
commit | 837f62266b845cce9797fbe989a7816d4f1fadff (patch) | |
tree | c44a8633b89bdd10235877833b48a71b69606f1c /changelog.d | |
parent | Port synapse_port_db to async/await (#6718) (diff) | |
download | synapse-837f62266b845cce9797fbe989a7816d4f1fadff.tar.xz |
Avoid attribute error when `password_config` present but empty (#6753)
The old statement returned `None` for such a `password_config` (like the one created on first run), thus retrieval of the `pepper` key failed with `AttributeError`. Fixes #5315 Signed-off-by: Ivan Vilata i Balaguer <ivan@selidor.net>
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/6753.bugfix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/6753.bugfix b/changelog.d/6753.bugfix new file mode 100644 index 0000000000..5dfde793e1 --- /dev/null +++ b/changelog.d/6753.bugfix @@ -0,0 +1 @@ +Fix `AttributeError: 'NoneType' object has no attribute 'get'` in `hash_password` when configuration has an empty `password_config`. Contributed by @ivilata. |