summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/src/commands/mobile/on_app_service_data_notification.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/application_manager/rpc_plugins/app_service_rpc_plugin/src/commands/mobile/on_app_service_data_notification.cc')
-rw-r--r--src/components/application_manager/rpc_plugins/app_service_rpc_plugin/src/commands/mobile/on_app_service_data_notification.cc12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/src/commands/mobile/on_app_service_data_notification.cc b/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/src/commands/mobile/on_app_service_data_notification.cc
index fd3891e0e8..1ffe99462d 100644
--- a/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/src/commands/mobile/on_app_service_data_notification.cc
+++ b/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/src/commands/mobile/on_app_service_data_notification.cc
@@ -66,15 +66,18 @@ void OnAppServiceDataNotification::Run() {
std::string service_id =
(*message_)[strings::msg_params][strings::service_data]
- [strings::service_id].asString();
+ [strings::service_id]
+ .asString();
auto service =
application_manager_.GetAppServiceManager().FindServiceByID(service_id);
if (!service) {
LOG4CXX_ERROR(logger_, "Service sending OnAppServiceData is not published");
return;
- } else if (!service->record[strings::service_manifest]
- [strings::allow_app_consumers].asBool()) {
+ } else if (!service
+ ->record[strings::service_manifest]
+ [strings::allow_app_consumers]
+ .asBool()) {
LOG4CXX_ERROR(logger_,
"Service does not allow for app consumers, skipping mobile "
"OnAppServiceData notification");
@@ -83,7 +86,8 @@ void OnAppServiceDataNotification::Run() {
std::string service_type =
(*message_)[strings::msg_params][strings::service_data]
- [strings::service_type].asString();
+ [strings::service_type]
+ .asString();
auto subscribed_to_app_service_predicate =
[service_type](const ApplicationSharedPtr app) {