forked from kevadesu/forgejo
Fix to use only needed columns from tables to get repository git paths (#3870)
This commit is contained in:
parent
9ec7f6b954
commit
5ffdf9388b
2 changed files with 48 additions and 4 deletions
|
@ -67,7 +67,7 @@ func WikiPath(userName, repoName string) string {
|
|||
|
||||
// WikiPath returns wiki data path for given repository.
|
||||
func (repo *Repository) WikiPath() string {
|
||||
return WikiPath(repo.MustOwner().Name, repo.Name)
|
||||
return WikiPath(repo.MustOwnerName(), repo.Name)
|
||||
}
|
||||
|
||||
// HasWiki returns true if repository has wiki.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue