mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
do not trim fatal error for "object 0x0" errors
This commit is contained in:
@@ -657,7 +657,7 @@ internal static partial class LogParserResult
|
||||
win32ErrorCodes.Add(hexCode);
|
||||
}
|
||||
var trimIdx = fatalError.IndexOf(" Called from");
|
||||
if (trimIdx is -1)
|
||||
if (trimIdx is -1 && !fatalError.Contains("Verification failed (object: 0x0)"))
|
||||
trimIdx = fatalError.IndexOf("(in file");
|
||||
var errorTxt = fatalError;
|
||||
if (trimIdx > -1)
|
||||
|
||||
Reference in New Issue
Block a user