Browse Source

Use the rev-parsed sha1 commit id (#98)

Use the rev-parsed sha1 commit id in urls to repo files,
instead of the abbreviated version.
tags/v1.21.12.1
Odin Ugedal Andrey Nering 9 years ago
parent
commit
5a6f7edde9
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      routers/repo/commit.go

+ 4
- 2
routers/repo/commit.go View File

@@ -9,11 +9,11 @@ import (
"path"

"github.com/Unknwon/paginater"
"github.com/go-gitea/git"
"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/base"
"github.com/go-gitea/gitea/modules/context"
"github.com/go-gitea/gitea/modules/setting"
"github.com/go-gitea/git"
)

const (
@@ -158,7 +158,9 @@ func Diff(ctx *context.Context) {
}
return
}

if len(commitID) != 40 {
commitID = commit.ID.String()
}
diff, err := models.GetDiffCommit(models.RepoPath(userName, repoName),
commitID, setting.Git.MaxGitDiffLines,
setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles)


Loading…
Cancel
Save