From 885d67afd080f2396c6427f5d64bd959f44e8104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Aime?= Date: Fri, 26 Feb 2021 14:26:50 +0100 Subject: [PATCH] Adding few seconds before internet check --- app/frontend/src/views/splash-screen.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/frontend/src/views/splash-screen.vue b/app/frontend/src/views/splash-screen.vue index 91188b0..e608850 100644 --- a/app/frontend/src/views/splash-screen.vue +++ b/app/frontend/src/views/splash-screen.vue @@ -46,7 +46,7 @@ } }, created: function() { - setTimeout(function () { this.internet_check(); }.bind(this), 1000); + setTimeout(function () { this.internet_check(); }.bind(this), 5000); } }