mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-03 15:59:33 +00:00
Backport #23588 by @viletyy #23587 submodule path is nil It is panic a nil error Co-authored-by: 来自村里的小螃蟹 <yystopf@163.com>
This commit is contained in:
parent
a3b917151c
commit
782c376c8b
1 changed files with 3 additions and 1 deletions
|
@ -214,8 +214,10 @@ func GetContents(ctx context.Context, repo *repo_model.Repository, treePath, ref
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if submodule != nil && submodule.URL != "" {
|
||||
contentsResponse.SubmoduleGitURL = &submodule.URL
|
||||
}
|
||||
}
|
||||
// Handle links
|
||||
if entry.IsRegular() || entry.IsLink() {
|
||||
downloadURL, err := url.Parse(repo.HTMLURL() + "/raw/" + url.PathEscape(string(refType)) + "/" + util.PathEscapeSegments(ref) + "/" + util.PathEscapeSegments(treePath))
|
||||
|
|
Loading…
Reference in a new issue