1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-14 19:43:20 +00:00

Move 'no modes' check outside of IsValid(). Issue

This commit is contained in:
Dale Campbell 2017-03-23 02:10:14 +00:00
parent a3cd605787
commit 41ccd6a8f6

View file

@ -196,9 +196,9 @@ func (nm *NickMode) String() string {
} }
} }
} }
}
if str == "+" { if str == "+" {
str = "No modes set" str = "No modes set"
} }
}
return str return str
} }