From cf3156fd4c7aca411c6b71ccbbf1eb3f78506178 Mon Sep 17 00:00:00 2001 From: damienbod Date: Thu, 6 Jul 2023 21:27:08 +0200 Subject: [PATCH] remove google install lnik --- EmployeePaycheck/wwwroot/verifier.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/EmployeePaycheck/wwwroot/verifier.js b/EmployeePaycheck/wwwroot/verifier.js index 0e64d45..e8807b9 100644 --- a/EmployeePaycheck/wwwroot/verifier.js +++ b/EmployeePaycheck/wwwroot/verifier.js @@ -57,9 +57,7 @@ window.addEventListener('load', () => { respPresentationReq = JSON.parse(message); if (/Android/i.test(navigator.userAgent)) { console.log(`Android device! Using deep link (${respPresentationReq.url}).`); - window.location.href = respPresentationReq.url; setTimeout(function () { - window.location.href = "https://play.google.com/store/apps/details?id=com.azure.authenticator"; - }, 10000); + window.location.href = respPresentationReq.url; } else if (/iPhone/i.test(navigator.userAgent)) { console.log(`iOS device! Using deep link (${respPresentationReq.url}).`); window.location.replace(respPresentationReq.url);