server: reenable per-account unread counts

This commit is contained in:
Bill Thiede 2025-04-15 19:33:32 -07:00
parent cffc228b3a
commit 60e2824167

View File

@ -135,7 +135,6 @@ pub fn tags(nm: &Notmuch, needs_unread: bool) -> Result<Vec<Tag>, ServerError> {
unread,
}
})
/*
.chain(
nm.unread_recipients()?
.into_iter()
@ -153,7 +152,6 @@ pub fn tags(nm: &Notmuch, needs_unread: bool) -> Result<Vec<Tag>, ServerError> {
})
}),
)
*/
.collect();
Ok(tags)
}