[Bootstrap] Deep integrate CrashReporterSetup (stub)

This commit is contained in:
Ducko 2022-04-19 14:37:31 +01:00
parent 8b36fe9dfd
commit 7e31a9af6a
2 changed files with 5 additions and 7 deletions

7
src/bootstrap.js vendored
View File

@ -59,11 +59,14 @@ const startCore = () => {
buildInfo,
Constants,
updater,
autoStart,
appSettings: require('./appSettings'),
paths: require('./paths'),
GPUSettings: require('./GPUSettings'),
autoStart,
crashReporterSetup: require('./crashReporterSetup'),
crashReporterSetup: {
isInitialized: () => true,
metadata: {}
}
});
};

View File

@ -1,5 +0,0 @@
// Much crash reporting, such wow
exports.init = () => {};
exports.isInitialized = () => true;
exports.metadata = {};