diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-22 10:41:38 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-22 10:41:38 +0800 |
commit | aabae52169ec05cbb07b98ca8f49921333c65e63 (patch) | |
tree | acf03d342ddb5c892c4dfb627cf286b2760f7c07 | |
parent | Basic IRCv3 message parser (diff) | |
download | go-lindenii-irc-aabae52169ec05cbb07b98ca8f49921333c65e63.tar.gz go-lindenii-irc-aabae52169ec05cbb07b98ca8f49921333c65e63.tar.zst go-lindenii-irc-aabae52169ec05cbb07b98ca8f49921333c65e63.zip |
Use Source by value instead of pointer
-rw-r--r-- | message.go | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -10,7 +10,7 @@ import ( type Message struct { Command string - Source *Source + Source Source Tags map[string]string Args []string } @@ -47,8 +47,7 @@ func Parse(raw []byte) (msg Message, err error) { } sp[0] = sp[0][1:] - source := parseSource(sp[0]) - msg.Source = &source + msg.Source = parseSource(sp[0]) if len(sp) < 2 { err = ErrMalformedMsg |