mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-23 19:59:31 +01:00
Always use ToLowerInvariant
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user