jmap: fix go static check failure

The missing variable was being set but unused.

Fixes: 9f97c698e3 ("jmap: fetch entire threads")
Signed-off-by: Tristan Partin <tristan@partin.io>
Acked-by: Robin Jarry <robin@jarry.cc>
This commit is contained in:
Tristan Partin
2024-05-28 17:52:30 -05:00
committed by Robin Jarry
parent d619f45e24
commit 9e93d9efdb

View File

@@ -157,7 +157,7 @@ func (w *JMAPWorker) handleFetchMessageHeaders(msg *types.FetchMessageHeaders) e
var req jmap.Request
req.Invoke(&email.Get{
Account: w.accountId,
IDs: mailIds,
IDs: missing,
Properties: headersProperties,
})