proxy: fix regex formatting error
This commit is contained in:
parent
3bcfc3d36c
commit
c15942cc32
@ -68,7 +68,7 @@ func tracerouteHandler(httpW http.ResponseWriter, httpR *http.Request) {
|
|||||||
}
|
}
|
||||||
if result != nil {
|
if result != nil {
|
||||||
errString = string(result)
|
errString = string(result)
|
||||||
errString = regexp.MustCompile(`\s*(\d*)\s*\*\n`).ReplaceAllStringFunc(errString, func(w string) string {
|
errString = regexp.MustCompile(`(?m)^\s*(\d*)\s*\*\n`).ReplaceAllStringFunc(errString, func(w string) string {
|
||||||
skippedCounter++
|
skippedCounter++
|
||||||
return ""
|
return ""
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user