diff --git a/Project-Unite/Controllers/BlogController.cs b/Project-Unite/Controllers/BlogController.cs index d1aa0f9..15591df 100644 --- a/Project-Unite/Controllers/BlogController.cs +++ b/Project-Unite/Controllers/BlogController.cs @@ -33,7 +33,7 @@ public ActionResult DislikePost(string id) var uid = User.Identity.GetUserId(); if (topic == null) return new HttpStatusCodeResult(404); - if (topic.EditHistory.OrderBy(x => x.EditedAt).First().UserId == User.Identity.GetUserId()) + if (topic.AuthorId == User.Identity.GetUserId()) return RedirectToAction("Index", new { id = id, triedtolikeowntopic = true }); var like = db.Likes.Where(x => x.Topic == topic.Id).FirstOrDefault(x => x.User == uid); if (like != null) @@ -69,7 +69,7 @@ public ActionResult LikePost(string id) var uid = User.Identity.GetUserId(); if (topic == null) return new HttpStatusCodeResult(404); - if (topic.EditHistory.OrderBy(x => x.EditedAt).First().UserId == User.Identity.GetUserId()) + if (topic.AuthorId == User.Identity.GetUserId()) return RedirectToAction("Index", new { id = id, triedtolikeowntopic = true }); var like = db.Likes.Where(x => x.Topic == topic.Id).FirstOrDefault(x => x.User == uid); if (like != null)