add base case to break recusion

This commit is contained in:
crapStone 2024-12-29 19:43:57 +01:00
parent ef7e2cd7bb
commit 5303eaad70
No known key found for this signature in database
GPG key ID: 22D4BF0CF7CC29C8

View file

@ -92,8 +92,9 @@ func (o *Options) matchRedirects(ctx *context.Context, giteaClient *gitea.Client
for _, redirect := range redirects {
if dstURL, ok := redirect.rewriteURL(reqURL); ok {
// do rewrite if status code is 200
if redirect.StatusCode == 200 {
if o.TargetPath == dstURL { // recursion base case, rewrite directly when paths are the same
return true
} else if redirect.StatusCode == 200 { // do rewrite if status code is 200
o.TargetPath = dstURL
o.Upstream(ctx, giteaClient, redirectsCache)
} else {