diff --git a/src/Orchard.Web/Modules/Orchard.Setup/Controllers/SetupController.cs b/src/Orchard.Web/Modules/Orchard.Setup/Controllers/SetupController.cs index 8c2eb4687..d12586da6 100644 --- a/src/Orchard.Web/Modules/Orchard.Setup/Controllers/SetupController.cs +++ b/src/Orchard.Web/Modules/Orchard.Setup/Controllers/SetupController.cs @@ -49,7 +49,7 @@ namespace Orchard.Setup.Controllers { var recipes = _setupService.Recipes().ToList(); string recipeDescription = null; - if (recipes.Count > 0) { + if (recipes.Any()) { recipeDescription = recipes[0].Description; }