From 3468446b5bd20fe0bde87b2ce1a116abc86e5ba5 Mon Sep 17 00:00:00 2001 From: Yegor Vialov Date: Fri, 8 May 2020 13:36:57 +0000 Subject: [PATCH] Increase auth callback timeout for authenticated webview --- assets/js/externalAuth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/externalAuth.js b/assets/js/externalAuth.js index 69f14b4..4633dc5 100644 --- a/assets/js/externalAuth.js +++ b/assets/js/externalAuth.js @@ -11,7 +11,7 @@ window.externalApp.getExternalAuth = function(options) { setTimeout(function(){ console.log("Calling a callback"); window[options.callback](true, responseData); - }, 500); + }, 900); } }; /*