From 736e7ef72a4862afa033f28fcae0c7e7ac34e874 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pau=20Ferrer=20Oca=C3=B1a?= Date: Wed, 14 Oct 2020 22:47:32 +0200 Subject: [PATCH] MOBILE-3565 core: Fix init delegate properties --- src/app/services/init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/init.ts b/src/app/services/init.ts index 8e06292fc..26bb797e5 100644 --- a/src/app/services/init.ts +++ b/src/app/services/init.ts @@ -81,7 +81,7 @@ export class CoreInitDelegate { ordered.sort((a, b) => b.priority - a.priority); ordered = ordered.map((data: CoreInitHandler) => ({ - func: this.prepareProcess.bind(this, data), + function: this.prepareProcess.bind(this, data), blocking: !!data.blocking, }));