Browse Source

Fix ReplaceAll so that standard repo go can compile

pull/50/head
Gregory Rudolph 4 years ago
parent
commit
cd79a10528
Signed by: rudi
GPG Key ID: EF64F3CBD1A1EBDD
  1. 2
      cmdInspect.go

2
cmdInspect.go

@ -30,7 +30,7 @@ func cmdInspect(cmd []string) { @@ -30,7 +30,7 @@ func cmdInspect(cmd []string) {
go printMessage(id)
} else {
go printUser(strings.ReplaceAll(cmd[1], "@", ""))
go printUser(strings.Replace(cmd[1], "@", "", -1))
}
} else {

Loading…
Cancel
Save