mirror of
https://github.com/VSCodium/vscodium
synced 2024-11-04 20:41:42 +00:00
do not start crashReporter when appCenter isn't configured (#787)
This commit is contained in:
parent
23160ad483
commit
b1970e82af
1 changed files with 13 additions and 0 deletions
13
patches/crash-reporter.patch
Normal file
13
patches/crash-reporter.patch
Normal file
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in a new issue