Merge branch 'development' of github.com:grufwub/gophor into development

master
kim (grufwub) 4 years ago
commit 201531dfcb

@ -258,6 +258,10 @@ func replaceStrings(str string, connHost *ConnHost) []byte {
b := make([]byte, 0)
for i := range split {
/* Re-add the tabs that we removed when splitting */
if (i < 3) {
split[i] += Tab
}
b = append(b, []byte(split[i])...)
}
return b

Loading…
Cancel
Save