From 954cfe7350e8560907105b8cd8bf25e2404d8719 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 17 Oct 2019 10:27:04 -0400 Subject: [PATCH] add process.versions.chrome to getRuntimeInfo --- src/browser/api/system.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/browser/api/system.js b/src/browser/api/system.js index 46bca5abf..ce7bce81d 100644 --- a/src/browser/api/system.js +++ b/src/browser/api/system.js @@ -468,8 +468,9 @@ export const System = { const architecture = process.arch; const cachePath = electronApp.getPath('userData'); const args = Object.assign({}, coreState.argo); + const chromeVersion = process.versions.chrome; args._ = undefined; - return { manifestUrl, port, securityRealm, version, architecture, cachePath, args }; + return { manifestUrl, port, securityRealm, version, architecture, cachePath, args, chromeVersion }; }, getRvmInfo: function(identity, callback, errorCallback) { let appObject = coreState.getAppObjByUuid(identity.uuid);