Skip to content

Commit

Permalink
fix: Remove creation date due to formatting failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
Starciad committed Jan 31, 2024
1 parent c1ac5ae commit 8eea79e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/R34Sharp/Entities/Comments/R34Comment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ namespace R34Sharp.Entities.Comments
[XmlRoot(ElementName = "comment")]
public sealed class R34Comment : R34Entity
{
#region HEADER
/// <summary>
/// Date and time the comment was published.
/// </summary>
[XmlIgnore] public DateTime CreatedAt { get; private set; }
#endregion
#region FILE
/// <summary>
/// The ID of comment.
Expand Down Expand Up @@ -54,7 +48,6 @@ public sealed class R34Comment : R34Entity
/// <inheritdoc/>
protected override async Task OnBuildAsync()
{
this.CreatedAt = DateTimeParser.R34Parse(this.CreatedAtString, "yyyy-dd-MM mm:ss");
await Task.CompletedTask;
}
}
Expand Down

0 comments on commit 8eea79e

Please sign in to comment.