diff options
author | Pratyush Desai | 2024-10-02 21:44:49 +0200 |
---|---|---|
committer | Pratyush Desai | 2024-10-02 21:44:49 +0200 |
commit | 394d6ca2fa34f924b1790ad66da42cf374829315 (patch) | |
tree | ec71a9d8bff6b0559bba44422bba7160fcc277cb | |
parent | a5cc5e031754db83816e59849de6cb75ff92f9ae (diff) | |
parent | d99a0d84bf3f473a5b78cf8b16b72c7ca927fdb0 (diff) | |
download | watbot-394d6ca2fa34f924b1790ad66da42cf374829315.tar.gz watbot-394d6ca2fa34f924b1790ad66da42cf374829315.tar.bz2 watbot-394d6ca2fa34f924b1790ad66da42cf374829315.zip |
Merge pull request 'Strip formatting codes' (#19) from format into master
Reviewed-on: https://git.com.de/LibertaCasa/watbot/pulls/19
-rw-r--r-- | go.mod | 1 | ||||
-rw-r--r-- | go.sum | 2 | ||||
-rw-r--r-- | wat/bot.go | 3 |
3 files changed, 5 insertions, 1 deletions
@@ -4,6 +4,7 @@ go 1.15 require ( github.com/creasty/defaults v1.8.0 + github.com/ergochat/irc-go v0.4.0 github.com/go-irc/irc v2.1.0+incompatible github.com/stretchr/testify v1.9.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect @@ -3,6 +3,8 @@ github.com/creasty/defaults v1.8.0/go.mod h1:iGzKe6pbEHnpMPtfDXZEr0NVxWnPTjb1bbD github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/ergochat/irc-go v0.4.0 h1:0YibCKfAAtwxQdNjLQd9xpIEPisLcJ45f8FNsMHAuZc= +github.com/ergochat/irc-go v0.4.0/go.mod h1:2vi7KNpIPWnReB5hmLpl92eMywQvuIeIIGdt/FQCph0= github.com/go-irc/irc v2.1.0+incompatible h1:pg7pMVq5OYQbqTxceByD/EN8VIsba7DtKn49rsCnG8Y= github.com/go-irc/irc v2.1.0+incompatible/go.mod h1:jJILTRy8s/qOvusiKifAEfhQMVwft1ZwQaVJnnzmyX4= github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= @@ -6,6 +6,7 @@ import ( "strings" "github.com/go-irc/irc" + "github.com/ergochat/irc-go/ircfmt" ) type WatBot struct { @@ -104,7 +105,7 @@ func (w *WatBot) Msg(m *irc.Message) { } // fieldsfunc allows you to obtain rune separated fields/args - args := strings.FieldsFunc(m.Params[1], func(c rune) bool { return c == ' ' }) + args := strings.FieldsFunc(ircfmt.Strip(m.Params[1]), func(c rune) bool { return c == ' ' }) if len(args) == 0 { return |