Skip to content

Commit

Permalink
Updated to string.empty
Browse files Browse the repository at this point in the history
  • Loading branch information
andr317c committed Oct 17, 2024
1 parent 1581eb6 commit 5f1243e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Umbraco.Core/Templates/HtmlLocalLinkParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public string EnsureInternalLinks(string text)
{
Constants.UdiEntityType.Document => _publishedUrlProvider.GetUrl(tagData.Udi.Guid),
Constants.UdiEntityType.Media => _publishedUrlProvider.GetMediaUrl(tagData.Udi.Guid),
_ => ""
_ => string.Empty,
};

text = StripTypeAttributeFromTag(text, tagData.Udi!.EntityType);
Expand Down

0 comments on commit 5f1243e

Please sign in to comment.