diff --git a/src/utils/vr-caps-detect.js b/src/utils/vr-caps-detect.js
index 61e160bf01e67ee841b91bde7fbeb903972b20d8..84e931fcd66fc34da93024223e42ef6003b77a58 100644
--- a/src/utils/vr-caps-detect.js
+++ b/src/utils/vr-caps-detect.js
@@ -50,7 +50,7 @@ export async function getAvailableVREntryTypes() {
   // This needs to be kept up-to-date with the latest browsers that can support VR and Hubs.
   // Checking for navigator.getVRDisplays always passes b/c of polyfill.
   const isWebVRCapableBrowser = window.hasNativeWebVRImplementation;
-  const isFirefoxReality = /Firefox for Android/.test(ua) && isWebVRCapableBrowser;
+  const isFirefoxReality = ('buildID' in navigator) && isWebVRCapableBrowser;
   const isInHMD = isOculusBrowser || isFirefoxReality;
 
   const isDaydreamCapableBrowser = !!(isWebVRCapableBrowser && browser.name === "chrome" && !isSamsungBrowser);