diff options
Diffstat (limited to 'models/pull_sign.go')
-rw-r--r-- | models/pull_sign.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/pull_sign.go b/models/pull_sign.go index 1d3474abe7..6ac2152722 100644 --- a/models/pull_sign.go +++ b/models/pull_sign.go @@ -34,7 +34,7 @@ func (pr *PullRequest) SignMerge(u *User, tmpBasePath, baseCommit, headCommit st case always: break case pubkey: - keys, err := ListGPGKeys(u.ID) + keys, err := ListGPGKeys(u.ID, ListOptions{}) if err != nil { return false, "", err } |