Fixes #362 and #363 issue with duplicate device key when adding an IRPortController

This commit is contained in:
Neil Dorin
2020-08-10 12:08:06 -06:00
parent 1b7dd2dd2a
commit 84099b1d0b

View File

@@ -149,7 +149,7 @@ namespace PepperDash.Essentials.Core
return null;
}
var irDevice = new IrOutputPortController(config.Key, GetIrOutputPort, config);
var irDevice = new IrOutputPortController(config.Key + "-irController", GetIrOutputPort, config);
return irDevice;
}