You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
CrashFrontend - Ensure are also set if there is a call to NewReportEnsure
[CL 2539291 by Jaroslaw Surowiec in Main branch]
This commit is contained in:
committed by
Jaroslaw.Surowiec@epicgames.com
parent
b48ba0ff6a
commit
8e9a5bcdee
@@ -614,11 +614,15 @@ namespace Tools.CrashReporter.CrashReportWebSite.Models
|
||||
NewCrash.CrashType = 1;
|
||||
if (NewCrash.RawCallStack != null)
|
||||
{
|
||||
if (NewCrash.RawCallStack.Contains("FDebug::AssertFailed()"))
|
||||
if (NewCrash.RawCallStack.Contains( "FDebug::AssertFailed" ))
|
||||
{
|
||||
NewCrash.CrashType = 2;
|
||||
}
|
||||
else if (NewCrash.RawCallStack.Contains("FDebug::EnsureFailed()"))
|
||||
else if (NewCrash.RawCallStack.Contains( "FDebug::EnsureFailed" ))
|
||||
{
|
||||
NewCrash.CrashType = 3;
|
||||
}
|
||||
else if (NewCrash.RawCallStack.Contains( "NewReportEnsure" ))
|
||||
{
|
||||
NewCrash.CrashType = 3;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user