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

@@ -253,7 +253,7 @@ namespace Flowframes
{
try
{
return Path.GetExtension(filePath)?.ToLower() == ".concat";
return Path.GetExtension(filePath)?.ToLowerInvariant() == ".concat";
}
catch
{