Fixed crash when attempting to filter on only one item.

This commit is contained in:
David Britch 2017-05-04 10:36:05 +01:00
parent 366d968048
commit d6a32f568e

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;
} }