We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e99550b commit abeedc6Copy full SHA for abeedc6
IPA.Injector/AntiPiracy.cs
@@ -47,7 +47,7 @@ private static bool IsInvalidFile(string filePath)
47
var extension = Path.GetExtension(filePath);
48
return extension.Equals(".url", StringComparison.OrdinalIgnoreCase) ||
49
extension.Equals(".ini", StringComparison.OrdinalIgnoreCase) && !excludedIniFiles.Contains(fileName, StringComparer.OrdinalIgnoreCase) ||
50
- fileName.IndexOf("steam", StringComparison.OrdinalIgnoreCase) >= 0 && new FileInfo(filePath).Length >= 300 * 1024;
+ fileName.IndexOf("steam", StringComparison.OrdinalIgnoreCase) >= 0 && new FileInfo(filePath).Length >= 350 * 1024;
51
}
52
53
private static string GetPath(Guid guid, KnownFolderFlags flags)
0 commit comments