mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-21 13:38:00 +02:00
Fix "issueReposQueryPattern does not match query" (#26556)
Fix `https://github.com/go-gitea/gitea/pull/26545#discussion_r1295734340` --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
@ -746,7 +746,7 @@ func getRepoIDs(reposQuery string) []int64 {
|
||||
return []int64{}
|
||||
}
|
||||
if !issueReposQueryPattern.MatchString(reposQuery) {
|
||||
log.Warn("issueReposQueryPattern does not match query")
|
||||
log.Warn("issueReposQueryPattern does not match query: %q", reposQuery)
|
||||
return []int64{}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user