Remove unnecessary forwarded timestamp check

This commit is contained in:
farley128 2025-12-31 12:09:56 -05:00
parent 046b23d3e7
commit bfef222ae2

View file

@ -342,8 +342,6 @@
} }
@* Forwarded timestamp *@ @* Forwarded timestamp *@
@if (fwd.Timestamp != DateTimeOffset.MinValue)
{
<div class="chatlog__forwarded-timestamp"> <div class="chatlog__forwarded-timestamp">
<span title="@FormatDate(fwd.Timestamp, "f")">Originally sent: @FormatDate(fwd.Timestamp)</span> <span title="@FormatDate(fwd.Timestamp, "f")">Originally sent: @FormatDate(fwd.Timestamp)</span>
@if (fwd.EditedTimestamp is not null) @if (fwd.EditedTimestamp is not null)
@ -351,7 +349,6 @@
<span title="@FormatDate(fwd.EditedTimestamp.Value, "f")"> (edited)</span> <span title="@FormatDate(fwd.EditedTimestamp.Value, "f")"> (edited)</span>
} }
</div> </div>
}
</div> </div>
} }