mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-15 00:03:38 -07:00
[HTML] Fix incorrect extraction for linked message ID when used in guild and not in DM
This commit is contained in:
parent
9bb88128b0
commit
7b32101517
|
|
@ -1,4 +1,4 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@ -147,7 +147,7 @@ namespace DiscordChatExporter.Core.Rendering
|
||||||
if (node is LinkNode linkNode)
|
if (node is LinkNode linkNode)
|
||||||
{
|
{
|
||||||
// Extract message ID if the link points to a Discord message
|
// Extract message ID if the link points to a Discord message
|
||||||
var linkedMessageId = Regex.Match(linkNode.Url, "//discordapp.com/channels/[^/]+/\\d+/(\\d+)").Groups[1].Value;
|
var linkedMessageId = Regex.Match(linkNode.Url, "^https?://discordapp.com/channels/.*?/(\\d+)/?$").Groups[1].Value;
|
||||||
|
|
||||||
return linkedMessageId.IsNullOrWhiteSpace()
|
return linkedMessageId.IsNullOrWhiteSpace()
|
||||||
? $"<a href=\"{Uri.EscapeUriString(linkNode.Url)}\">{HtmlEncode(linkNode.Title)}</a>"
|
? $"<a href=\"{Uri.EscapeUriString(linkNode.Url)}\">{HtmlEncode(linkNode.Title)}</a>"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue