MOBILE-3565 core: Fix init delegate properties
parent
61d021e522
commit
736e7ef72a
|
@ -81,7 +81,7 @@ export class CoreInitDelegate {
|
||||||
ordered.sort((a, b) => b.priority - a.priority);
|
ordered.sort((a, b) => b.priority - a.priority);
|
||||||
|
|
||||||
ordered = ordered.map((data: CoreInitHandler) => ({
|
ordered = ordered.map((data: CoreInitHandler) => ({
|
||||||
func: this.prepareProcess.bind(this, data),
|
function: this.prepareProcess.bind(this, data),
|
||||||
blocking: !!data.blocking,
|
blocking: !!data.blocking,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue