Always use ToLowerInvariant

This commit is contained in:
n00mkrad
2022-10-14 09:00:47 +02:00
parent 292ccbdf0d
commit 8524d2b964
21 changed files with 62 additions and 62 deletions

View File

@@ -20,7 +20,7 @@ namespace Flowframes.IO
string custServer = Config.Get(Config.Key.customServer);
string server = custServer.Trim().Length > 3 ? custServer : Servers.GetServer().GetUrl();
string baseUrl = $"{server}/flowframes/mdl/";
return Path.Combine(baseUrl, ai.ToLower(), relPath);
return Path.Combine(baseUrl, ai.ToLowerInvariant(), relPath);
}
static string GetMdlFileUrl(string ai, string model, string relPath)