Skip to content

Commit

Permalink
Use custom implementation of message link generation since D#+'s is b…
Browse files Browse the repository at this point in the history
…roken

Closes #188
  • Loading branch information
Erisa committed Feb 14, 2024
1 parent 85434a9 commit fa31ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Helpers/DiscordHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static async Task<DiscordMessageBuilder> GenerateMessageRelay(DiscordMess
.AddField($"Attachment", $"[{message.Attachments[0].FileName}]({message.Attachments[0].Url})");

if (jumplink)
embed.AddField("Message Link", $"{message.JumpLink}");
embed.AddField("Message Link", $"{MessageLink(message)}");


if (message.ReferencedMessage is not null)
Expand Down

0 comments on commit fa31ca5

Please sign in to comment.