Solved! RPL_USERHOST must use trailing

This commit is contained in:
vegax87 2017-01-23 21:20:42 +01:00
parent 2ff48a7088
commit a623d8ef1e
3 changed files with 3 additions and 19 deletions

View File

@ -543,6 +543,7 @@ var (
"NOTICE": true, "NOTICE": true,
RPL_WHOISCHANNELS: true, RPL_WHOISCHANNELS: true,
RPL_USERHOST: true,
} }
) )

View File

@ -3,11 +3,6 @@
package irc package irc
import (
"strings"
"unicode"
)
// argsToStrings takes the arguments and splits them into a series of strings, // argsToStrings takes the arguments and splits them into a series of strings,
// each argument separated by delim and each string bounded by maxLength. // each argument separated by delim and each string bounded by maxLength.
func argsToStrings(maxLength int, arguments []string, delim string) []string { func argsToStrings(maxLength int, arguments []string, delim string) []string {
@ -38,15 +33,3 @@ func argsToStrings(maxLength int, arguments []string, delim string) []string {
return messages return messages
} }
// stripSpaces removes all whitespaces inside a string
func stripSpaces(str string) string {
return strings.Map(func(r rune) rune {
if unicode.IsSpace(r) {
// if the character is a space, drop it
return -1
}
// else keep it in the string
return r
}, str)
}