From e84861f77027d20e035c49a444553538dd4738a0 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 12 Nov 2019 15:04:56 -0700 Subject: [PATCH] Apparently our eslint rules are different in different layers --- src/vector/platform/VectorBasePlatform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector/platform/VectorBasePlatform.js b/src/vector/platform/VectorBasePlatform.js index e60da1448d..6b01e05e56 100644 --- a/src/vector/platform/VectorBasePlatform.js +++ b/src/vector/platform/VectorBasePlatform.js @@ -105,7 +105,7 @@ export default class VectorBasePlatform extends BasePlatform { // Note that trying to reproduce the problem in isolation doesn't seem to work: // see https://gist.github.com/turt2live/5ab87919918adbfd7cfb8f1ad10f2409 for // an example (you'll need your own web server to host that). - if (!!window.chrome) { + if (window.chrome) { doUpdate(); } }