mirror of
https://gitee.com/gitea/gitea
synced 2025-11-05 00:50:26 +08:00
Fix release API URL generation (#8239)
This commit is contained in:
committed by
techknowlogick
parent
3fc42add16
commit
0ed5a647dd
@@ -65,7 +65,7 @@ func (r *Release) LoadAttributes() error {
|
||||
|
||||
// APIURL the api url for a release. release must have attributes loaded
|
||||
func (r *Release) APIURL() string {
|
||||
return fmt.Sprintf("%sapi/v1/%s/releases/%d",
|
||||
return fmt.Sprintf("%sapi/v1/repos/%s/releases/%d",
|
||||
setting.AppURL, r.Repo.FullName(), r.ID)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user