From 83677df96c9aeb51bab199aec840a7c57f4a071a Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 9 Feb 2017 00:26:50 +0100 Subject: [PATCH] idem? --- Yavsc/Controllers/BlogspotController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();