mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Remove unnecessary forwarded timestamp check
This commit is contained in:
parent
046b23d3e7
commit
bfef222ae2
|
|
@ -342,16 +342,13 @@
|
|||
}
|
||||
|
||||
@* Forwarded timestamp *@
|
||||
@if (fwd.Timestamp != DateTimeOffset.MinValue)
|
||||
{
|
||||
<div class="chatlog__forwarded-timestamp">
|
||||
<span title="@FormatDate(fwd.Timestamp, "f")">Originally sent: @FormatDate(fwd.Timestamp)</span>
|
||||
@if (fwd.EditedTimestamp is not null)
|
||||
{
|
||||
<span title="@FormatDate(fwd.EditedTimestamp.Value, "f")"> (edited)</span>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
<div class="chatlog__forwarded-timestamp">
|
||||
<span title="@FormatDate(fwd.Timestamp, "f")">Originally sent: @FormatDate(fwd.Timestamp)</span>
|
||||
@if (fwd.EditedTimestamp is not null)
|
||||
{
|
||||
<span title="@FormatDate(fwd.EditedTimestamp.Value, "f")"> (edited)</span>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue