From 1ded034e72e2334269b2c5f5c5e61f4530b56f10 Mon Sep 17 00:00:00 2001 From: Kevin Lee <kevin@infinite-lee.com> Date: Fri, 1 Jun 2018 15:00:02 -0700 Subject: [PATCH] ci seems to think this is not passing linter, so making it a bit more readable --- src/utils/vr-caps-detect.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/utils/vr-caps-detect.js b/src/utils/vr-caps-detect.js index 297842342..224f1bb49 100644 --- a/src/utils/vr-caps-detect.js +++ b/src/utils/vr-caps-detect.js @@ -67,11 +67,10 @@ export async function getAvailableVREntryTypes() { // Browser for now since Samsung Internet requires an additional WebVR installation + flag, so return "maybe". // // If we are in Oculus Browser (ie, we are literally wearing a GearVR) then return 'yes'. - const gearvr = isMaybeGearVRCompatibleDevice() - ? isOculusBrowser - ? VR_DEVICE_AVAILABILITY.yes - : VR_DEVICE_AVAILABILITY.maybe - : VR_DEVICE_AVAILABILITY.no; + let gearvr = VR_DEVICE_AVAILABILITY.no; + if (isMaybeGearVRCompatibleDevice()) { + gearvr = isOculusBrowser ? VR_DEVICE_AVAILABILITY.yes : VR_DEVICE_AVAILABILITY.maybe; + } // For daydream detection, we first check if they are on an Android compatible device, and assume they // may support daydream *unless* this browser has WebVR capabilities, in which case we can do better. -- GitLab