async public Task <ActionResult> RemoveComment(Comment comment)
 {
     if (!CustomUser.IsInRole("Moderator"))
     {
         return(RedirectToAction("Index", "Home"));
     }
     try
     {
         comment.Text = "[Removed]";
         _memeRepo.RemoveCommentAsync(comment);
         return(RedirectToAction("Details", new { id = comment.MemeId }));
     }
     catch
     {
     }
     return(RedirectToAction("Index", "Home"));
 }