diff --git a/Yavsc/Controllers/BlogspotController.cs b/Yavsc/Controllers/BlogspotController.cs index b25504f0..330f9679 100644 --- a/Yavsc/Controllers/BlogspotController.cs +++ b/Yavsc/Controllers/BlogspotController.cs @@ -106,7 +106,7 @@ namespace Yavsc.Controllers Blog blog = _context.Blogspot.Include( b => b.Author - ).Single(m => m.Id == id); + ).Include(p => p.ACL).Single(m => m.Id == id); if (blog == null) { return HttpNotFound();