We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de4b254 commit 76c1799Copy full SHA for 76c1799
commands/list.go
@@ -38,7 +38,13 @@ func (cmd *List) Parse(fields []interface{}) error {
38
}
39
40
dec := utf7.Encoding.NewDecoder()
41
-
+
42
+ s := make([]string, len(fields))
43
44
+ for i, v := range fields {
45
+ s[i] = fmt.Sprint(v)
46
+ }
47
48
if mailbox, err := imap.ParseString(fields[0]); err != nil {
49
return err
50
} else if mailbox, err := dec.String(mailbox); err != nil {
0 commit comments