forked from External/ergo
Solved! RPL_USERHOST must use trailing
This commit is contained in:
parent
2ff48a7088
commit
a623d8ef1e
3 changed files with 3 additions and 19 deletions
|
|
@ -543,6 +543,7 @@ var (
|
|||
"NOTICE": true,
|
||||
|
||||
RPL_WHOISCHANNELS: true,
|
||||
RPL_USERHOST: true,
|
||||
}
|
||||
)
|
||||
|
||||
|
|
|
|||
17
irc/util.go
17
irc/util.go
|
|
@ -3,11 +3,6 @@
|
|||
|
||||
package irc
|
||||
|
||||
import (
|
||||
"strings"
|
||||
"unicode"
|
||||
)
|
||||
|
||||
// argsToStrings takes the arguments and splits them into a series of strings,
|
||||
// each argument separated by delim and each string bounded by maxLength.
|
||||
func argsToStrings(maxLength int, arguments []string, delim string) []string {
|
||||
|
|
@ -38,15 +33,3 @@ func argsToStrings(maxLength int, arguments []string, delim string) []string {
|
|||
|
||||
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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue