aboutsummaryrefslogtreecommitdiff
path: root/clientapi/routing/keys.go
diff options
context:
space:
mode:
Diffstat (limited to 'clientapi/routing/keys.go')
-rw-r--r--clientapi/routing/keys.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/clientapi/routing/keys.go b/clientapi/routing/keys.go
index b7a76b47..5c368138 100644
--- a/clientapi/routing/keys.go
+++ b/clientapi/routing/keys.go
@@ -19,11 +19,12 @@ import (
"net/http"
"time"
+ "github.com/matrix-org/util"
+
"github.com/matrix-org/dendrite/clientapi/httputil"
"github.com/matrix-org/dendrite/clientapi/jsonerror"
"github.com/matrix-org/dendrite/keyserver/api"
userapi "github.com/matrix-org/dendrite/userapi/api"
- "github.com/matrix-org/util"
)
type uploadKeysRequest struct {
@@ -77,7 +78,6 @@ func UploadKeys(req *http.Request, keyAPI api.ClientKeyAPI, device *userapi.Devi
}
}
keyCount := make(map[string]int)
- // we only return key counts when the client uploads OTKs
if len(uploadRes.OneTimeKeyCounts) > 0 {
keyCount = uploadRes.OneTimeKeyCounts[0].KeyCount
}