diff --git a/routing/routing_session.cpp b/routing/routing_session.cpp index b3897d2ad6..87e7ed837e 100644 --- a/routing/routing_session.cpp +++ b/routing/routing_session.cpp @@ -72,7 +72,7 @@ void RoutingSession::Init(RoutingStatisticsCallback const & routingStatisticsFn, alohalytics::TStringMap params = { {"speed_cameras", SpeedCameraManagerModeForStat(m_speedCameraManager.GetMode())}, - {"voice_notification_enabled", m_turnNotificationsMgr.IsEnabled() ? "1" : "0"} + {"voice_enabled", m_turnNotificationsMgr.IsEnabled() ? "1" : "0"} }; alohalytics::LogEvent("OnRoutingInit", params); } diff --git a/routing/speed_camera_manager.hpp b/routing/speed_camera_manager.hpp index 1b8110a2d3..4b55dfceaa 100644 --- a/routing/speed_camera_manager.hpp +++ b/routing/speed_camera_manager.hpp @@ -148,6 +148,7 @@ private: bool BeepSignalAvailable() const { return m_makeBeepSignal && m_beepSignalCounter < kBeepSignalNumber; } bool VoiceSignalAvailable() const { return m_makeVoiceSignal && m_voiceSignalCounter < kVoiceNotificationNumber; } + private: SpeedCameraOnRoute m_closestCamera; uint32_t m_beepSignalCounter;