diff --git a/Teknik/Areas/Blog/Controllers/BlogController.cs b/Teknik/Areas/Blog/Controllers/BlogController.cs index 8612fe1..423d082 100644 --- a/Teknik/Areas/Blog/Controllers/BlogController.cs +++ b/Teknik/Areas/Blog/Controllers/BlogController.cs @@ -88,8 +88,7 @@ namespace Teknik.Areas.Blog.Controllers PostViewModel model = new PostViewModel(); // find the post specified bool isAuth = User.IsInRole("Admin"); - var post = db.BlogPosts.Where(p => (p.Blog.User.Username == username && p.BlogPostId == id) && - (p.Published || p.Blog.User.Username == User.Identity.Name || isAuth)).FirstOrDefault(); + var post = db.BlogPosts.Where(p => p.BlogPostId == id && (p.Published || p.Blog.User.Username == User.Identity.Name || isAuth)).FirstOrDefault(); if (post != null) { model = new PostViewModel(post);