We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa2a5e0 commit 28b9ce1Copy full SHA for 28b9ce1
packages/mos-gateway/src/mosHandler.ts
@@ -424,7 +424,8 @@ export class MosHandler {
424
for (const [deviceId, device] of Object.entries<{ options: MosDeviceConfig }>(devices)) {
425
if (device) {
426
if (device.options.secondary) {
427
- this._openMediaHotStandby[device.options.secondary.id] =
+ const fullSecondaryId = this._settings?.mosId + '_' + device.options.secondary.id
428
+ this._openMediaHotStandby[fullSecondaryId] =
429
device.options.secondary?.openMediaHotStandby || false
430
// If the host isn't set, don't use secondary:
431
if (!device.options.secondary.host || !device.options.secondary.id)
0 commit comments