Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fetch keys directly before using trusted key servers
Browse files Browse the repository at this point in the history
Fixes #6086.
  • Loading branch information
erikjohnston committed Sep 25, 2019
1 parent 77dc709 commit c9b7d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/crypto/keyring.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ def __init__(self, hs, key_fetchers=None):
if key_fetchers is None:
key_fetchers = (
StoreKeyFetcher(hs),
PerspectivesKeyFetcher(hs),
ServerKeyFetcher(hs),
PerspectivesKeyFetcher(hs),
)
self._key_fetchers = key_fetchers

Expand Down

0 comments on commit c9b7d97

Please sign in to comment.