From 17210956331faff3b3e1f90790d304ff60cb7d58 Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Fri, 21 Jun 2024 09:29:21 +1000 Subject: [PATCH] fix Varibles typo (#10005) --- src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs b/src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs index 8cefe9c7f1..e212edaa60 100644 --- a/src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs +++ b/src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs @@ -198,10 +198,10 @@ public static void Obfuscate(Error error) var elmahException = error.Exception as ElmahException; if (elmahException != null) { - var piiServerVaribles = elmahException.ServerVariables; - foreach (var key in piiServerVaribles.Keys) + var piiServerVariables = elmahException.ServerVariables; + foreach (var key in piiServerVariables.Keys) { - error.ServerVariables[key] = piiServerVaribles[key]; + error.ServerVariables[key] = piiServerVariables[key]; } }