webmail: new shadowed variables were detected by shadow since previous commit, prevent

This commit is contained in:
Mechiel Lukkien 2024-04-20 21:33:14 +02:00
parent 0f735a1710
commit 0047f09e2b
No known key found for this signature in database

View file

@ -1510,21 +1510,21 @@ func queryMessages(ctx context.Context, log mlog.Log, acc *store.Account, tx *bs
unread := map[int64]bool{} // Propagated to thread root.
if query.Threading == ThreadUnread {
for _, mi := range mil {
m := mi.Message
if m.Seen {
mm := mi.Message
if mm.Seen {
continue
}
unread[m.ID] = true
for _, id := range m.ThreadParentIDs {
unread[mm.ID] = true
for _, id := range mm.ThreadParentIDs {
unread[id] = true
}
}
}
for _, mi := range mil {
m := mi.Message
mm := mi.Message
threadRoot := true
rootID := m.ID
for _, id := range m.ThreadParentIDs {
rootID := mm.ID
for _, id := range mm.ThreadParentIDs {
if _, ok := collapsed[id]; ok {
threadRoot = false
rootID = id