From baf853eda89e08b890367d5bfd018eda76ee481c Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Sun, 8 Dec 2024 09:19:56 +0800 Subject: Omit msg.Tags nil check --- msg.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msg.go b/msg.go index 87ed1ab..98ebc14 100644 --- a/msg.go +++ b/msg.go @@ -24,7 +24,7 @@ type SMsg struct { } func (msg *SMsg) ClientSerialize() (final string) { - if msg.Tags != nil && len(msg.Tags) != 0 { + if len(msg.Tags) != 0 { final = "@" for k, v := range msg.Tags { // TODO: Tag values must be escaped @@ -48,7 +48,7 @@ func (msg *SMsg) ClientSerialize() (final string) { } func (msg *SMsg) ServerSerialize() (final string) { - if msg.Tags != nil && len(msg.Tags) != 0 { + if len(msg.Tags) != 0 { final = "@" for k, v := range msg.Tags { // TODO: Tag values must be escaped -- cgit v1.2.3