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

This commit is contained in:
kim (grufwub) 2020-05-06 13:35:17 +01:00
commit 201531dfcb

View File

@ -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