mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 23:33:34 +00:00
Exclude deleted items from folder counts (#1555)
This commit is contained in:
@@ -485,6 +485,11 @@ namespace Bit.App.Pages
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (c.IsDeleted)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
var fId = c.FolderId ?? "none";
|
var fId = c.FolderId ?? "none";
|
||||||
if (_folderCounts.ContainsKey(fId))
|
if (_folderCounts.ContainsKey(fId))
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user