mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
fix: call the EssentialsDevice custom activate
`CrestronGenericBaseDevice` was NOT calling `base.CustomActivate()` in it's `CustomActivate` override, causing the `CreateMobileControlMessengers` method to not be called as expected when plugin devices were inheriting from `CrestronGenericBaseDevice` or `CrestronGenericBridgeableBaseDevice`.
This commit is contained in:
@@ -104,7 +104,7 @@ namespace PepperDash.Essentials.Core
|
|||||||
Hardware.OnlineStatusChange += Hardware_OnlineStatusChange;
|
Hardware.OnlineStatusChange += Hardware_OnlineStatusChange;
|
||||||
CommunicationMonitor.Start();
|
CommunicationMonitor.Start();
|
||||||
|
|
||||||
return true;
|
return base.CustomActivate();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user