mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
Fix incorrect internal response type (#24173)
Close #24167 The endpoint "set-default-branch" returns `success`, so just decode it as `responseText`
This commit is contained in:
parent
f82ee30097
commit
2979041bc5
1 changed files with 2 additions and 1 deletions
|
@ -129,7 +129,8 @@ func SetDefaultBranch(ctx context.Context, ownerName, repoName, branch string) R
|
|||
url.PathEscape(branch),
|
||||
)
|
||||
req := newInternalRequest(ctx, reqURL, "POST")
|
||||
return requestJSONUserMsg(req, "")
|
||||
_, extra := requestJSONResp(req, &responseText{})
|
||||
return extra
|
||||
}
|
||||
|
||||
// SSHLog sends ssh error log response
|
||||
|
|
Loading…
Reference in a new issue