Browse Source

Fixed crash when attempting to filter on only one item.

pull/185/head
David Britch 7 years ago
parent
commit
5cbd00e63e
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() private async Task FilterAsync()
{ {
if (Brand == null && Type == null)
if (Brand == null || Type == null)
{ {
return; return;
} }


Loading…
Cancel
Save