feat: Add method call to constructor for EssentialsDevice

This commit is contained in:
Andrew Welker
2021-07-23 19:44:41 -06:00
parent 4bd777f6b9
commit 76e4d4a82d

View File

@@ -19,13 +19,13 @@ namespace PepperDash.Essentials.Core
protected EssentialsDevice(string key)
: base(key)
{
SubscribeToActivateComplete();
}
protected EssentialsDevice(string key, string name)
: base(key, name)
{
SubscribeToActivateComplete();
}
private void SubscribeToActivateComplete()