mirror of https://github.com/fluffle/goirc
Merge 41ccd6a8f6
into 08c1bcf174
This commit is contained in:
commit
e13696545a
|
@ -188,13 +188,15 @@ func (nm *NickMode) String() string {
|
||||||
}
|
}
|
||||||
str := "+"
|
str := "+"
|
||||||
v := reflect.Indirect(reflect.ValueOf(nm))
|
v := reflect.Indirect(reflect.ValueOf(nm))
|
||||||
t := v.Type()
|
if v.IsValid() {
|
||||||
for i := 0; i < v.NumField(); i++ {
|
t := v.Type()
|
||||||
switch f := v.Field(i); f.Kind() {
|
for i := 0; i < v.NumField(); i++ {
|
||||||
// only bools here at the mo!
|
switch f := v.Field(i); f.Kind() {
|
||||||
case reflect.Bool:
|
// only bools here at the mo!
|
||||||
if f.Bool() {
|
case reflect.Bool:
|
||||||
str += NickModeToString[t.Field(i).Name]
|
if f.Bool() {
|
||||||
|
str += NickModeToString[t.Field(i).Name]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue