refactor(starlight): update namespace reference for HtmlEncode utility

The change updates the UtilsTpl.HtmlEncode call to use the fully qualified
namespace Shared.Models.Templates.UtilsTpl.HtmlEncode for consistency
with the project's namespace structure and to avoid potential ambiguity
This commit is contained in:
baliasnyifeliks 2026-01-14 09:40:45 +02:00
parent 90fe957674
commit 0d029f362d

View File

@ -193,7 +193,7 @@ namespace StarLight.Controllers
html.Append("'>");
html.Append("<div class=\"videos__item-imgbox videos__movie-imgbox\"></div><div class=\"videos__item-title\">");
UtilsTpl.HtmlEncode(item.name, html);
Shared.Models.Templates.UtilsTpl.HtmlEncode(item.name, html);
html.Append("</div></div>");
firstjson = false;