patch NNBSP number separator out of cultures that use it (fixes #2157)

This commit is contained in:
goat 2024-12-26 13:48:28 +01:00
parent 1d9116f0a0
commit ce5ee71c91
2 changed files with 48 additions and 0 deletions

View file

@ -178,6 +178,9 @@ public sealed class EntryPoint
throw new Exception("Working directory was invalid");
Reloaded.Hooks.Tools.Utilities.FasmBasePath = new DirectoryInfo(info.WorkingDirectory);
// Apply common fixes for culture issues
CultureFixes.Apply();
// This is due to GitHub not supporting TLS 1.0, so we enable all TLS versions globally
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls;