diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-09-29 17:08:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 17:08:18 +0100 |
commit | f290e92a34c67e4d9673629810ac8f0f85b28b7c (patch) | |
tree | 01df1a3f865d899a6ec150365f4254cba08d10fe /federationapi | |
parent | 43cdba9a69674899a5900aee976ebc7add286914 (diff) |
Remove TLS fingerprints, improve perspective unmarshal handling (#1452)
* Add prefer_direct_fetch option
* Update gomatrixserverlib
* Update gomatrixserverlib
* Update gomatrixserverlib
* Don't deal in TLS fingerprints anymore
Diffstat (limited to 'federationapi')
-rw-r--r-- | federationapi/routing/keys.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/federationapi/routing/keys.go b/federationapi/routing/keys.go index cbec88c1..4779bcb2 100644 --- a/federationapi/routing/keys.go +++ b/federationapi/routing/keys.go @@ -136,7 +136,6 @@ func localKeys(cfg *config.FederationAPI, validUntil time.Time) (*gomatrixserver var keys gomatrixserverlib.ServerKeys keys.ServerName = cfg.Matrix.ServerName - keys.TLSFingerprints = cfg.TLSFingerPrints keys.ValidUntilTS = gomatrixserverlib.AsTimestamp(validUntil) publicKey := cfg.Matrix.PrivateKey.Public().(ed25519.PublicKey) |