diff --git a/src/Smartstore.Web/Controllers/ShoppingCartController.cs b/src/Smartstore.Web/Controllers/ShoppingCartController.cs index 979661f36..858afb97e 100644 --- a/src/Smartstore.Web/Controllers/ShoppingCartController.cs +++ b/src/Smartstore.Web/Controllers/ShoppingCartController.cs @@ -810,7 +810,8 @@ namespace Smartstore.Web.Controllers } var wishlist = await _shoppingCartService.GetCartAsync(pageCustomer, ShoppingCartType.Wishlist, storeId); - var model = await wishlist.MapAsync(!customerGuid.HasValue); + var model = new WishlistModel(); + await wishlist.MapAsync(model, !customerGuid.HasValue); NotifyInfo(T("Products.SelectProducts"), true);