From 6ba67e16995d333102333b613a13a94ad2e1ad2c Mon Sep 17 00:00:00 2001 From: evan-scales Date: Thu, 18 Apr 2024 16:06:03 -0400 Subject: [PATCH] remove bad comment --- FU.API/FU.API/Services/PostService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/FU.API/FU.API/Services/PostService.cs b/FU.API/FU.API/Services/PostService.cs index 8e2b153d..0aaa871d 100644 --- a/FU.API/FU.API/Services/PostService.cs +++ b/FU.API/FU.API/Services/PostService.cs @@ -223,7 +223,6 @@ private static void AssertValidDateAndTime(Post post) } // Make sure the post is not in the past - // Only check if we are not updating the post so that we can allow for posts to be updated bool isPostInPast = post.StartTime < DateTime.UtcNow; if (isPostInPast) {