diff --git a/plugin/image_finder/keyword.go b/plugin/image_finder/keyword.go index c3d35f3e..75e61d7d 100644 --- a/plugin/image_finder/keyword.go +++ b/plugin/image_finder/keyword.go @@ -130,7 +130,7 @@ func printtags(r reflect.Value) string { tags := r.Elem() s := binary.BytesToString(binary.NewWriterF(func(w *binary.Writer) { for i := 0; i < tags.Len(); i++ { - w.WriteByte('\n') + _ = w.WriteByte('\n') tag := tags.Index(i) _ = w.WriteByte('#') w.WriteString(tag.Field(0).String())