forked from NYANDEV/forgejo
Safely detect urlPrefix in the format /:owner/:repo
This commit is contained in:
parent
85c58eba90
commit
ca5678da32
1 changed files with 3 additions and 3 deletions
|
@ -168,9 +168,9 @@ func RenderSha1CurrentPattern(rawBytes []byte, urlPrefix string) []byte {
|
||||||
}
|
}
|
||||||
|
|
||||||
func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string) []byte {
|
func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string) []byte {
|
||||||
// Remove unnecessary things after username and reponame in prefix
|
if i := strings.Index(urlPrefix, "/src"); i != -1 {
|
||||||
// (otherwise stuff like /:user/:repo/src/master/issues/1 would happen)
|
urlPrefix = urlPrefix[:i]
|
||||||
urlPrefix = strings.Join(strings.Split(urlPrefix, "/")[:3], "/")
|
}
|
||||||
ms := issueIndexPattern.FindAll(rawBytes, -1)
|
ms := issueIndexPattern.FindAll(rawBytes, -1)
|
||||||
for _, m := range ms {
|
for _, m := range ms {
|
||||||
var space string
|
var space string
|
||||||
|
|
Loading…
Reference in a new issue