mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 15:15:34 +03:00
Exclude deleted items from folder counts (#1555)
This commit is contained in:
parent
a9a4fa56c1
commit
c0783cd162
1 changed files with 5 additions and 0 deletions
|
@ -485,6 +485,11 @@ namespace Bit.App.Pages
|
|||
}
|
||||
}
|
||||
|
||||
if (c.IsDeleted)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
var fId = c.FolderId ?? "none";
|
||||
if (_folderCounts.ContainsKey(fId))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue