diff options
author | Kegsay <kegan@matrix.org> | 2020-06-04 11:50:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 11:50:57 +0100 |
commit | 097cdf879cb83324e238ee489354e87d77ee4dc9 (patch) | |
tree | f415d916f20431cbb86de797fd3a475d0394a51b /clientapi/threepid | |
parent | e7d1ac84c32a10f8deb7bcfc94531386312179c7 (diff) |
s/Base64String/Base64Bytes/g (#1093)
* s/Base64String/Base64Bytes/g
Requires https://github.com/matrix-org/gomatrixserverlib/pull/203 to land first
* update gmsl
Diffstat (limited to 'clientapi/threepid')
-rw-r--r-- | clientapi/threepid/invites.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clientapi/threepid/invites.go b/clientapi/threepid/invites.go index 8fed9956..8f173bf8 100644 --- a/clientapi/threepid/invites.go +++ b/clientapi/threepid/invites.go @@ -279,7 +279,7 @@ func queryIDServerPubKey(ctx context.Context, idServerName string, keyID string) } var pubKeyRes struct { - PublicKey gomatrixserverlib.Base64String `json:"public_key"` + PublicKey gomatrixserverlib.Base64Bytes `json:"public_key"` } if resp.StatusCode != http.StatusOK { |