aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--msg.go4
1 files 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