From 84099b1d0bb9140aa3e2381f190238ffafd5428c Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Mon, 10 Aug 2020 12:08:06 -0600 Subject: [PATCH] Fixes #362 and #363 issue with duplicate device key when adding an IRPortController --- .../PepperDashEssentialsBase/Comm and IR/IRPortHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Comm and IR/IRPortHelper.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Comm and IR/IRPortHelper.cs index 64a1577f..2bb53f14 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/Comm and IR/IRPortHelper.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/Comm and IR/IRPortHelper.cs @@ -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; }