summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/add_command_request.cc
diff options
context:
space:
mode:
authorAshwin Karemore <akaremor@ford.com>2018-06-18 16:47:11 +0200
committerAKalinich-Luxoft <AKalinich@luxoft.com>2018-07-26 18:43:34 +0300
commit62d2e5847389eaf6b949e2e724ddf98cab486fc1 (patch)
treeedc800f8eaa64e0d8368f01411e0f9f1f0714979 /src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/add_command_request.cc
parent5bf976c98f56a1d6867114ffe622eff2cc8785fd (diff)
downloadsdl_core-62d2e5847389eaf6b949e2e724ddf98cab486fc1.tar.gz
removed image check in RPC
Diffstat (limited to 'src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/add_command_request.cc')
-rw-r--r--src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/add_command_request.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/add_command_request.cc b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/add_command_request.cc
index fc836aae5f..ab9baea7ef 100644
--- a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/add_command_request.cc
+++ b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/add_command_request.cc
@@ -90,19 +90,6 @@ void AddCommandRequest::Run() {
return;
}
- if ((*message_)[strings::msg_params].keyExists(strings::cmd_icon)) {
- mobile_apis::Result::eType verification_result = MessageHelper::VerifyImage(
- (*message_)[strings::msg_params][strings::cmd_icon],
- app,
- application_manager_);
-
- if (mobile_apis::Result::SUCCESS != verification_result) {
- LOG4CXX_ERROR(
- logger_, "MessageHelper::VerifyImage return " << verification_result);
- SendResponse(false, verification_result);
- return;
- }
- }
if (!((*message_)[strings::msg_params].keyExists(strings::cmd_id))) {
LOG4CXX_ERROR(logger_, "INVALID_DATA");