Skip to content

Commit e927718

Browse files
authored
Use ToLowerInvariant to avoid locale issues. (#7967)
1 parent a064431 commit e927718

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/NuGetGallery.Services/Authentication/ApiKeyV4.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private bool TryParseInternal(string plaintextApiKey)
143143

144144
private string Normalize(string input)
145145
{
146-
return input.ToLower();
146+
return input.ToLowerInvariant();
147147
}
148148
}
149149
}

0 commit comments

Comments
 (0)