From 5fc1e069d7dd99ff39a447999be0ed4c74b0c906 Mon Sep 17 00:00:00 2001 From: "Brian R. Bondy" Date: Sun, 4 Nov 2018 14:20:56 -0500 Subject: [PATCH] Enable hangouts extension to allow screen share Fix https://github.com/brave/brave-browser/issues/1982 --- lib/config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/config.js b/lib/config.js index 3c554055459f..110211d45c33 100644 --- a/lib/config.js +++ b/lib/config.js @@ -49,6 +49,8 @@ const Config = function () { this.sccache = getNPMConfig(['sccache']) this.braveReferralsApiKey = getNPMConfig(['brave_referrals_api_key']) || '' this.ignore_compile_failure = false + this.enable_hangout_services_extension = true + } Config.prototype.buildArgs = function () { @@ -87,6 +89,7 @@ Config.prototype.buildArgs = function () { chrome_version_major: chrome_version_parts[0], safebrowsing_api_endpoint: this.safeBrowsingApiEndpoint, brave_referrals_api_key: this.braveReferralsApiKey, + enable_hangout_services_extension: this.enable_hangout_services_extension } if (process.platform === 'darwin') {