From 579ad7207191be1c8f09a2e142c0b06c1de89923 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Aime?= Date: Mon, 15 Feb 2021 15:53:17 +0100 Subject: [PATCH] Correcting bug on config loading --- 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 bc76224..d61362e 100644 --- a/app/frontend/src/views/splash-screen.vue +++ b/app/frontend/src/views/splash-screen.vue @@ -46,7 +46,7 @@ } }, created: function() { - this.internet_check(); + setTimeout(function () { this.internet_check(); }.bind(this), 1000); } }