File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ export const createFakeCrashApiResponse = () => ({
26
26
platform : 'NES' ,
27
27
previousCrashId : 998 ,
28
28
processor : 'Pentium 4' ,
29
+ stackKey : 'myConsoleCrasher(1337)' ,
29
30
stackKeyComment : 'hello world!' ,
30
31
stackKeyId : 117 ,
31
32
stackKeyDefectLabel : 'idk' ,
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export interface CrashDetails {
46
46
platform : string ;
47
47
previousCrashId : number ;
48
48
processor : string ;
49
+ stackKey : string ;
49
50
stackKeyComment : string ;
50
51
stackKeyId : number ;
51
52
stackKeyDefectId : number ;
@@ -79,6 +80,7 @@ export function createCrashDetails(options: CrashDetailsRawResponse): CrashDetai
79
80
const ipAddress = defaultToEmptyString ( options . ipAddress , 'options.ipAddress' ) ;
80
81
const platform = defaultToEmptyString ( options . platform , 'options.platform' ) ;
81
82
const processor = defaultToEmptyString ( options . processor , 'options.processor' ) ;
83
+ const stackKey = defaultToEmptyString ( options . stackKey , 'options.stackKey' ) ;
82
84
const stackKeyComment = defaultToEmptyString ( options . stackKeyComment , 'options.stackKeyComment' ) ;
83
85
const stackKeyDefectLabel = defaultToEmptyString ( options . stackKeyDefectLabel , 'options.stackKeyDefectLabel' ) ;
84
86
const stackKeyDefectUrl = defaultToEmptyString ( options . stackKeyDefectUrl , 'options.stackKeyDefectUrl' ) ;
@@ -114,6 +116,7 @@ export function createCrashDetails(options: CrashDetailsRawResponse): CrashDetai
114
116
ipAddress,
115
117
platform,
116
118
processor,
119
+ stackKey,
117
120
stackKeyComment,
118
121
stackKeyDefectLabel,
119
122
stackKeyDefectUrl,
You can’t perform that action at this time.
0 commit comments