aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-22 10:41:38 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-22 10:41:38 +0800
commitaabae52169ec05cbb07b98ca8f49921333c65e63 (patch)
treeacf03d342ddb5c892c4dfb627cf286b2760f7c07
parentBasic IRCv3 message parser (diff)
downloadgo-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.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/message.go b/message.go
index 190c198..ffb29e8 100644
--- a/message.go
+++ b/message.go
@@ -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