mirror of
https://github.com/FluxaMedia/fluxa.git
synced 2026-08-18 04:55:58 +00:00
Fix Apple catalog startup actor isolation
This commit is contained in:
parent
eca5306fa6
commit
0d438b2edb
1 changed files with 2 additions and 2 deletions
|
|
@ -32,11 +32,11 @@ final class FluxaAppleCatalogStartup {
|
|||
init(
|
||||
runtime: FluxaAppleHeadlessRuntime,
|
||||
configurationStore: FluxaAppleAddonConfigurationStore = FluxaAppleAddonConfigurationStore(),
|
||||
bootstrap: FluxaAppleCatalogBootstrap = FluxaAppleCatalogBootstrap()
|
||||
bootstrap: FluxaAppleCatalogBootstrap? = nil
|
||||
) {
|
||||
let handler = FluxaAppleHomeEffectHandler(
|
||||
configurationStore: configurationStore,
|
||||
catalogBootstrap: bootstrap
|
||||
catalogBootstrap: bootstrap ?? FluxaAppleCatalogBootstrap()
|
||||
)
|
||||
coordinator = FluxaAppleHeadlessCoordinator(
|
||||
runtime: runtime,
|
||||
|
|
|
|||
Loading…
Reference in a new issue