summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kutsan <AKutsan@luxoft.com>2016-08-16 14:47:49 +0300
committerAlexander Kutsan <AKutsan@luxoft.com>2016-08-16 14:47:49 +0300
commit4969513b9860f35182fba41bc1cc07ebb144c637 (patch)
tree25c6fafe508b669f118fd1ed769b4583b54a3953
parentf8e17cb89fd080d500528cfc9377a7e101c0c5cd (diff)
downloadsdl_core-4969513b9860f35182fba41bc1cc07ebb144c637.tar.gz
Fix Read did RPC
Related issue : APPLINK-20920
-rw-r--r--src/components/application_manager/src/commands/mobile/read_did_request.cc8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/components/application_manager/src/commands/mobile/read_did_request.cc b/src/components/application_manager/src/commands/mobile/read_did_request.cc
index 69885f9d40..08ec8e179c 100644
--- a/src/components/application_manager/src/commands/mobile/read_did_request.cc
+++ b/src/components/application_manager/src/commands/mobile/read_did_request.cc
@@ -102,13 +102,7 @@ void ReadDIDRequest::on_event(const event_engine::Event& event) {
bool result = mobile_apis::Result::SUCCESS == result_code;
- const std::string return_info =
- message[strings::msg_params][hmi_response::message].asString();
-
- SendResponse(result,
- result_code,
- return_info.c_str(),
- &(message[strings::msg_params]));
+ SendResponse(result, result_code, NULL, &(message[strings::msg_params]));
break;
}
default: {