MOBILE-3565 core: Fix init delegate properties

main
Pau Ferrer Ocaña 2020-10-14 22:47:32 +02:00
parent 61d021e522
commit 736e7ef72a
1 changed files with 1 additions and 1 deletions

View File

@ -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,
}));