Fix tee_muxer input
This commit is contained in:
parent
fa3f8b9b57
commit
5bed312e0b
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ func replace(what, placeholder, value string) string {
|
||||||
if matches[2] != `\` {
|
if matches[2] != `\` {
|
||||||
v = strings.ReplaceAll(v, `\`, `\\`)
|
v = strings.ReplaceAll(v, `\`, `\\`)
|
||||||
}
|
}
|
||||||
v = strings.ReplaceAll(v, matches[2], `\`+matches[2])
|
v = strings.ReplaceAll(v, matches[2], `\\`+matches[2])
|
||||||
}
|
}
|
||||||
|
|
||||||
return strings.Replace(match, match, v, 1)
|
return strings.Replace(match, match, v, 1)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue