Skip to content

Commit afcb629

Browse files
authored
fix: mac crashTypeId (#118)
1 parent 9004ec6 commit afcb629

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/post/crash-type.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ export class CrashType {
33
static readonly dotnet = new CrashType('Windows.NET', 8);
44
static readonly electron = new CrashType('Electron', 22);
55
static readonly native = new CrashType('Windows.Native', 1);
6+
static readonly mac = new CrashType('macOS', 13);
67
private constructor(public readonly name: string, public readonly id: number) { }
78
}

0 commit comments

Comments
 (0)