Skip to content

Commit

Permalink
fix: package manager not following publication rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Dec 11, 2024
1 parent 2056f70 commit bb62fbe
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions apps/package-manager/packages/generic/src/coreHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,18 +160,13 @@ export class CoreHandler {
await Promise.all([
this.core.autoSubscribe(PeripheralDevicePubSub.peripheralDeviceForDevice, this.core.deviceId),
this.core.autoSubscribe(PeripheralDevicePubSub.peripheralDeviceCommands, this.core.deviceId),
this.core.autoSubscribe(PeripheralDevicePubSub.packageManagerPlayoutContext, this.core.deviceId, undefined),
this.core.autoSubscribe(PeripheralDevicePubSub.packageManagerPlayoutContext as any, this.core.deviceId),
this.core.autoSubscribe(PeripheralDevicePubSub.packageManagerPackageContainers as any, this.core.deviceId),
this.core.autoSubscribe(
PeripheralDevicePubSub.packageManagerPackageContainers,
PeripheralDevicePubSub.packageManagerExpectedPackages as any,
this.core.deviceId,
undefined
),
this.core.autoSubscribe(
PeripheralDevicePubSub.packageManagerExpectedPackages,
this.core.deviceId,
undefined,
undefined
),
])

this.logger.info('Core: Subscriptions are set up!')
Expand Down

0 comments on commit bb62fbe

Please sign in to comment.