Skip to content

Commit 2979041

Browse files
authored
Fix incorrect internal response type (#24173)
Close #24167 The endpoint "set-default-branch" returns `success`, so just decode it as `responseText`
1 parent f82ee30 commit 2979041

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/private/hook.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ func SetDefaultBranch(ctx context.Context, ownerName, repoName, branch string) R
129129
url.PathEscape(branch),
130130
)
131131
req := newInternalRequest(ctx, reqURL, "POST")
132-
return requestJSONUserMsg(req, "")
132+
_, extra := requestJSONResp(req, &responseText{})
133+
return extra
133134
}
134135

135136
// SSHLog sends ssh error log response

0 commit comments

Comments
 (0)