From 0d029f362d90b947b6fda82d55cb09976f6c3dcc Mon Sep 17 00:00:00 2001 From: baliasnyifeliks Date: Wed, 14 Jan 2026 09:40:45 +0200 Subject: [PATCH] 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 --- StarLight/Controller.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StarLight/Controller.cs b/StarLight/Controller.cs index 28461c8..58ee1cd 100644 --- a/StarLight/Controller.cs +++ b/StarLight/Controller.cs @@ -193,7 +193,7 @@ namespace StarLight.Controllers html.Append("'>"); html.Append("
"); - UtilsTpl.HtmlEncode(item.name, html); + Shared.Models.Templates.UtilsTpl.HtmlEncode(item.name, html); html.Append("
"); firstjson = false;