Skip to content

Commit aa89543

Browse files
committed
resolve merge error and fmt
1 parent 8a69868 commit aa89543

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

imapserver/imapmemserver/mailbox.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,9 @@ func (mbox *Mailbox) statusDataLocked(options *imap.StatusOptions) *imap.StatusD
9999
if options.HighestModSeq {
100100
data.HighestModSeq = mbox.highestModSeq
101101
}
102-
if options.HighestModSeq {
103-
data.HighestModSeq = mbox.highestModSeq
102+
if options.NumRecent {
103+
num := uint32(0)
104+
data.NumRecent = &num
104105
}
105106
return &data
106107
}

0 commit comments

Comments
 (0)