diff options
author | Kegsay <kegan@matrix.org> | 2020-07-21 17:46:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 17:46:47 +0100 |
commit | 470933789b4ae08cd33c0a1de3656673eb0ebe70 (patch) | |
tree | ee9a5c30e390220ce7a413b59306806b78327519 /cmd/dendritejs/main.go | |
parent | f54689f86253b8f3712ee0ae93f49d7366e7b095 (diff) |
Perform outbound federation hits for querying/claiming E2E keys (#1212)
* Perform outbound federation hits for querying/claiming E2E keys
Untested currently because we need the receiving end to work
before sytest will be happy.
* Linting
Diffstat (limited to 'cmd/dendritejs/main.go')
-rw-r--r-- | cmd/dendritejs/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dendritejs/main.go b/cmd/dendritejs/main.go index 55023a42..3d58d957 100644 --- a/cmd/dendritejs/main.go +++ b/cmd/dendritejs/main.go @@ -233,7 +233,7 @@ func main() { RoomserverAPI: rsAPI, StateAPI: stateAPI, UserAPI: userAPI, - KeyAPI: keyserver.NewInternalAPI(base.Cfg), + KeyAPI: keyserver.NewInternalAPI(base.Cfg, federation), //ServerKeyAPI: serverKeyAPI, ExtPublicRoomsProvider: p2pPublicRoomProvider, } |