diff options
Diffstat (limited to 'routers/private/key.go')
-rw-r--r-- | routers/private/key.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/private/key.go b/routers/private/key.go index 2bb319083f..1e60af232a 100644 --- a/routers/private/key.go +++ b/routers/private/key.go @@ -50,7 +50,7 @@ func UpdatePublicKeyInRepo(ctx *context.PrivateContext) { // AuthorizedPublicKeyByContent searches content as prefix (leak e-mail part) // and returns public key found. func AuthorizedPublicKeyByContent(ctx *context.PrivateContext) { - content := ctx.Query("content") + content := ctx.Form("content") publicKey, err := models.SearchPublicKeyByContent(content) if err != nil { |