From 6d69277062c0d9883bee3065e6f5151b04fbe141 Mon Sep 17 00:00:00 2001 From: Leander Beernaert Date: Mon, 13 Nov 2023 09:27:50 +0100 Subject: [PATCH] fix: Print SeqSet for store command --- imap/command/store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imap/command/store.go b/imap/command/store.go index 58124f74..a9dcc867 100644 --- a/imap/command/store.go +++ b/imap/command/store.go @@ -40,7 +40,7 @@ func (s Store) String() string { silentStr = ".SILENT" } - return fmt.Sprintf("STORE %v%v %v", s.Action.String(), silentStr, s.Flags) + return fmt.Sprintf("STORE %v %v%v %v", s.SeqSet, s.Action.String(), silentStr, s.Flags) } func (s Store) SanitizedString() string {