mirror of https://github.com/fluffle/goirc
Merge 41ccd6a8f6
into 08c1bcf174
This commit is contained in:
commit
e13696545a
|
@ -188,6 +188,7 @@ func (nm *NickMode) String() string {
|
||||||
}
|
}
|
||||||
str := "+"
|
str := "+"
|
||||||
v := reflect.Indirect(reflect.ValueOf(nm))
|
v := reflect.Indirect(reflect.ValueOf(nm))
|
||||||
|
if v.IsValid() {
|
||||||
t := v.Type()
|
t := v.Type()
|
||||||
for i := 0; i < v.NumField(); i++ {
|
for i := 0; i < v.NumField(); i++ {
|
||||||
switch f := v.Field(i); f.Kind() {
|
switch f := v.Field(i); f.Kind() {
|
||||||
|
@ -198,6 +199,7 @@ func (nm *NickMode) String() string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if str == "+" {
|
if str == "+" {
|
||||||
str = "No modes set"
|
str = "No modes set"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue