Fixed OnActiveBeaconsUpdated not getting called

This commit is contained in:
Garry Newman 2019-05-10 10:10:03 +01:00
parent 075e5460a4
commit d0b4ce0451

View File

@ -31,7 +31,7 @@ internal static void Shutdown()
internal static void InstallEvents() internal static void InstallEvents()
{ {
AvailableBeaconLocationsUpdated_t.Install( x => OnBeaconLocationsUpdated?.Invoke() ); AvailableBeaconLocationsUpdated_t.Install( x => OnBeaconLocationsUpdated?.Invoke() );
ActiveBeaconsUpdated_t.Install( x => OnBeaconLocationsUpdated?.Invoke() ); ActiveBeaconsUpdated_t.Install( x => OnActiveBeaconsUpdated?.Invoke() );
} }
/// <summary> /// <summary>