diff --git a/Wino.Core/Services/FolderService.cs b/Wino.Core/Services/FolderService.cs index 32e6a33a..c5afbcb4 100644 --- a/Wino.Core/Services/FolderService.cs +++ b/Wino.Core/Services/FolderService.cs @@ -64,8 +64,7 @@ namespace Wino.Core.Services } // Draft and Junk folders are not counted as unread. They must return the item count instead. - - if (folder.SpecialFolderType != SpecialFolderType.Draft || folder.SpecialFolderType != SpecialFolderType.Junk) + if (folder.SpecialFolderType != SpecialFolderType.Draft && folder.SpecialFolderType != SpecialFolderType.Junk) { query.Where("IsRead", 0); }