mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +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;
|
||||
CommunicationMonitor.Start();
|
||||
|
||||
return true;
|
||||
return base.CustomActivate();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user