Skip to content

Commit c1f4228

Browse files
authored
config: Fix server.redirects.fromRe being ignored unless server.redirects.from is also set
1 parent 503dcf6 commit c1f4228

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎config/commonConfig.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ func (c *CacheBuster) CompileConfig(logger loggers.Logger) error {
450450
}
451451

452452
func (r Redirect) IsZero() bool {
453-
return r.From == ""
453+
return r.From == "" && r.FromRe == ""
454454
}
455455

456456
const (

0 commit comments

Comments
 (0)