aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Plugins.Essentials.Content.Routing/PageRouterEntry.cs
diff options
context:
space:
mode:
authorLibravatar vman <public@vaughnnugent.com>2022-11-30 14:59:18 -0500
committerLibravatar vman <public@vaughnnugent.com>2022-11-30 14:59:18 -0500
commitf13193aa928f099c8152653570d2839b46b8f1ee (patch)
treebe2394edec528472258c0da7d354bbb8ad9881e4 /VNLib.Plugins.Essentials.Content.Routing/PageRouterEntry.cs
parente4ce3ae25802471bea0ea99698fbb3f6ffdf7953 (diff)
Project cleanup + analyzer updates
Diffstat (limited to 'VNLib.Plugins.Essentials.Content.Routing/PageRouterEntry.cs')
-rw-r--r--VNLib.Plugins.Essentials.Content.Routing/PageRouterEntry.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/VNLib.Plugins.Essentials.Content.Routing/PageRouterEntry.cs b/VNLib.Plugins.Essentials.Content.Routing/PageRouterEntry.cs
index 4548f60..10b7075 100644
--- a/VNLib.Plugins.Essentials.Content.Routing/PageRouterEntry.cs
+++ b/VNLib.Plugins.Essentials.Content.Routing/PageRouterEntry.cs
@@ -58,7 +58,7 @@ namespace VNLib.Plugins.Essentials.Content.Routing
protected override void ProcessHostCommand(string cmd)
{
- if(cmd.Contains("reset"))
+ if(cmd.Contains("reset", StringComparison.OrdinalIgnoreCase))
{
PageRouter?.ResetRoutes();
Log.Information("Routing table reset");