Skip to content

Commit

Permalink
fix: Print SeqSet for store command
Browse files Browse the repository at this point in the history
  • Loading branch information
LBeernaertProton committed Nov 14, 2023
1 parent 5c79414 commit 6d69277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imap/command/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6d69277

Please sign in to comment.