From 77653183dd96ce6b9c9c01ed716568458c08ec43 Mon Sep 17 00:00:00 2001 From: Sarangan Rajamanickam Date: Tue, 9 Feb 2016 16:17:17 -0800 Subject: [PATCH] CB-10576: MobileSpec can't get results for Windows-Store 8.1 Builds Fixing a minor syntax issue --- src/windows/CameraProxy.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/windows/CameraProxy.js b/src/windows/CameraProxy.js index 7c752f7..3acba81 100644 --- a/src/windows/CameraProxy.js +++ b/src/windows/CameraProxy.js @@ -715,8 +715,9 @@ function takePictureFromCameraWindows(successCallback, errorCallback, args) { } // Temp fix for CB-10539 /*else if (totalPixels <= 320 * 240) { - maxRes = UIMaxRes.verySmallQvga;*/ - } else if (totalPixels <= 640 * 480) { + maxRes = UIMaxRes.verySmallQvga; + }*/ + else if (totalPixels <= 640 * 480) { maxRes = UIMaxRes.smallVga; } else if (totalPixels <= 1024 * 768) { maxRes = UIMaxRes.mediumXga;