Skip to content

Commit

Permalink
do not start crashReporter when appCenter isn't configured (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam authored Aug 5, 2021
1 parent 23160ad commit b1970e8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions patches/crash-reporter.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/src/main.js b/src/main.js
index 19dde20..d9611f2 100644
--- a/src/main.js
+++ b/src/main.js
@@ -409,6 +409,8 @@ function configureCrashReporter() {
argv.splice(endOfArgsMarkerIndex, 0, '--crash-reporter-id', crashReporterId);
}
}
+ } else {
+ return;
}
}

0 comments on commit b1970e8

Please sign in to comment.