summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaksym Ked (GitHub) <mked@luxoft.com>2018-08-28 13:25:24 +0300
committerMaksym Ked (GitHub) <mked@luxoft.com>2018-08-28 13:25:24 +0300
commitdd0abaf95ba00acdd44ff12cd15b60b51129f652 (patch)
treebda763f5ce4c39f2607bb1d2609dd282ec22cf81
parent32c015efc0f5e5709b5f8367e22a05360549f8ea (diff)
downloadsdl_core-fix/failing_reset_global_properties_smoke_tests.tar.gz
fixed failing reset global properties smoke testsfix/failing_reset_global_properties_smoke_tests
-rw-r--r--src/components/application_manager/src/message_helper/message_helper.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/application_manager/src/message_helper/message_helper.cc b/src/components/application_manager/src/message_helper/message_helper.cc
index 95ccf15a3b..9c242442ac 100644
--- a/src/components/application_manager/src/message_helper/message_helper.cc
+++ b/src/components/application_manager/src/message_helper/message_helper.cc
@@ -854,12 +854,12 @@ MessageHelper::CreateTTSResetGlobalPropertiesRequest(
if (reset_result.help_prompt) {
(*ui_reset_global_prop_request)[strings::help_prompt] =
- application->help_prompt();
+ *(application->help_prompt());
}
if (reset_result.timeout_prompt) {
(*ui_reset_global_prop_request)[strings::timeout_prompt] =
- application->timeout_prompt();
+ *(application->timeout_prompt());
}
(*ui_reset_global_prop_request)[strings::app_id] = application->app_id();