More descriptive message to the below
Some checks failed
Integration tests for the release process / release-simulation (pull_request) Has been cancelled
requirements / merge-conditions (pull_request) Has been cancelled
testing / backend-checks (pull_request) Has been cancelled
testing / frontend-checks (pull_request) Has been cancelled
issue-labels / backporting (pull_request_target) Has been cancelled
milestone / set (pull_request_target) Has been cancelled
testing / test-unit (pull_request) Has been cancelled
testing / test-e2e (pull_request) Has been cancelled
testing / test-remote-cacher (redis) (pull_request) Has been cancelled
testing / test-remote-cacher (valkey) (pull_request) Has been cancelled
testing / test-remote-cacher (garnet) (pull_request) Has been cancelled
testing / test-remote-cacher (redict) (pull_request) Has been cancelled
testing / test-mysql (pull_request) Has been cancelled
testing / test-pgsql (pull_request) Has been cancelled
testing / test-sqlite (pull_request) Has been cancelled
testing / security-check (pull_request) Has been cancelled

Signed-off-by: Minecon724 <minecon724@noreply.git.m724.eu>
This commit is contained in:
Minecon724 2025-03-17 13:37:59 +01:00
parent 95dd999db7
commit e7cdbe2ac4
Signed by: Minecon724
GPG key ID: A02E6E67AB961189
2 changed files with 4 additions and 3 deletions

View file

@ -246,6 +246,7 @@ report_message = If you believe that this is a Forgejo bug, please search for is
not_found = The target couldn't be found.
network_error = Network error
server_internal = Internal server error
issue_not_found = Issue doesn't exist
[startpage]
app_desc = A painless, self-hosted Git service

View file

@ -2205,7 +2205,7 @@ func GetIssueInfo(ctx *context.Context) {
issue, err := issues_model.GetIssueWithAttrsByIndex(ctx, ctx.Repo.Repository.ID, ctx.ParamsInt64(":index"))
if err != nil {
if issues_model.IsErrIssueNotExist(err) {
ctx.Error(http.StatusNotFound)
ctx.Error(http.StatusNotFound, ctx.Locale.TrString("error.issue_not_found"))
} else {
ctx.Error(http.StatusInternalServerError, "GetIssueByIndex", err.Error())
}
@ -2215,13 +2215,13 @@ func GetIssueInfo(ctx *context.Context) {
if issue.IsPull {
// Need to check if Pulls are enabled and we can read Pulls
if !ctx.Repo.Repository.CanEnablePulls() || !ctx.Repo.CanRead(unit.TypePullRequests) {
ctx.Error(http.StatusNotFound)
ctx.Error(http.StatusNotFound, ctx.Locale.TrString("error.issue_not_found"))
return
}
} else {
// Need to check if Issues are enabled and we can read Issues
if !ctx.Repo.CanRead(unit.TypeIssues) {
ctx.Error(http.StatusNotFound)
ctx.Error(http.StatusNotFound, ctx.Locale.TrString("error.issue_not_found"))
return
}
}