Browse Source

Fixed crash when attempting to filter on only one item.

pull/223/head
David Britch 7 years ago
parent
commit
d6a32f568e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/CatalogViewModel.cs

+ 1
- 1
src/Mobile/eShopOnContainers/eShopOnContainers.Core/ViewModels/CatalogViewModel.cs View File

@ -102,7 +102,7 @@ namespace eShopOnContainers.Core.ViewModels
private async Task FilterAsync()
{
if (Brand == null && Type == null)
if (Brand == null || Type == null)
{
return;
}


Loading…
Cancel
Save