aboutsummaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorJason Song <i@wolfogre.com>2023-08-17 20:38:02 +0800
committerGitHub <noreply@github.com>2023-08-17 12:38:02 +0000
commitc179ab423600b23f5b095a620e4d3b514353c0af (patch)
treea5d9b2518faacf0751bc9434ef63039d66da12ad /routers
parentc6b92c84fe5e4b1fad1711611d8a0d453fd7e311 (diff)
downloadgitea-c179ab423600b23f5b095a620e4d3b514353c0af.tar.gz
gitea-c179ab423600b23f5b095a620e4d3b514353c0af.zip
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>
Diffstat (limited to 'routers')
-rw-r--r--routers/web/user/home.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/user/home.go b/routers/web/user/home.go
index 8cc9cccc29..bf19cc513d 100644
--- a/routers/web/user/home.go
+++ b/routers/web/user/home.go
@@ -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{}
}