Update mqtt package to v4

- Minor updates to other packages
- Relates to #181
This commit is contained in:
Victor Hagelbäck 2021-04-07 10:26:33 +02:00
parent 464c17d920
commit 7c8373d2c7
3 changed files with 11 additions and 10 deletions

View file

@ -333,10 +333,7 @@ class PlejdApi {
`Device ${device.title} (${device.deviceId}) has no load configured and will be excluded`,
);
} else {
const uniqueOutputId = this.deviceRegistry.getUniqueOutputId(
device.deviceId,
deviceOutput,
);
const uniqueOutputId = this.deviceRegistry.getUniqueOutputId(device.deviceId, deviceOutput);
const plejdDevice = this.siteDetails.plejdDevices.find(
(x) => x.deviceId === device.deviceId,