Updated to string.empty (#17294)

(cherry picked from commit ba1080541b)
This commit is contained in:
Andreas Zerbst
2024-10-17 09:59:41 +02:00
committed by Andreas Zerbst
parent 85e55845a3
commit 0a496b2e52

View File

@@ -66,7 +66,7 @@ public sealed class HtmlLocalLinkParser
{
Constants.UdiEntityType.Document => _publishedUrlProvider.GetUrl(tagData.Udi.Guid),
Constants.UdiEntityType.Media => _publishedUrlProvider.GetMediaUrl(tagData.Udi.Guid),
_ => ""
_ => string.Empty,
};
text = StripTypeAttributeFromTag(text, tagData.Udi!.EntityType);