Remove Double Try

- Remove shitty double try code, cleanup can happen in a single try.
This commit is contained in:
Frog
2026-06-15 03:02:51 -07:00
parent 4f5cd45642
commit d9e1f0cb08
-7
View File
@@ -146,13 +146,6 @@ internal static event Action<string> OnLogError;
{
if (File.Exists(ScanLogPath))
File.Delete(ScanLogPath);
}
catch
{
// ignored
}
try
{
if (File.Exists(SteamLogPath))
File.Delete(SteamLogPath);
}