From 8eea79e3ce56599e14f5ab99ce6ddaa4a82ece80 Mon Sep 17 00:00:00 2001 From: Starciad Date: Wed, 31 Jan 2024 19:06:19 -0300 Subject: [PATCH] fix: Remove creation date due to formatting failure. --- src/R34Sharp/Entities/Comments/R34Comment.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/R34Sharp/Entities/Comments/R34Comment.cs b/src/R34Sharp/Entities/Comments/R34Comment.cs index 911bfb0..131b064 100644 --- a/src/R34Sharp/Entities/Comments/R34Comment.cs +++ b/src/R34Sharp/Entities/Comments/R34Comment.cs @@ -13,12 +13,6 @@ namespace R34Sharp.Entities.Comments [XmlRoot(ElementName = "comment")] public sealed class R34Comment : R34Entity { - #region HEADER - /// - /// Date and time the comment was published. - /// - [XmlIgnore] public DateTime CreatedAt { get; private set; } - #endregion #region FILE /// /// The ID of comment. @@ -54,7 +48,6 @@ public sealed class R34Comment : R34Entity /// protected override async Task OnBuildAsync() { - this.CreatedAt = DateTimeParser.R34Parse(this.CreatedAtString, "yyyy-dd-MM mm:ss"); await Task.CompletedTask; } }