Skip to content

Commit

Permalink
fix Varibles typo (#10005)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored Jun 20, 2024
1 parent 786c36b commit 1721095
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NuGetGallery.Core/Infrastructure/TableErrorLog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
}

Expand Down

0 comments on commit 1721095

Please sign in to comment.