summaryrefslogtreecommitdiff
path: root/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src
diff options
context:
space:
mode:
authorAlexander Kutsan (GitHub) <akutsan@luxoft.com>2021-01-20 18:45:45 +0200
committerGitHub <noreply@github.com>2021-01-20 11:45:45 -0500
commit98c4ff9811260a939e7892a0aa49d98914ad3b06 (patch)
tree960b9aac63a2322793c46fd1d4fc133bc7f91daf /src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src
parent404e8f97d75883010f5dd7380acba8c947d4f3dd (diff)
downloadsdl_core-98c4ff9811260a939e7892a0aa49d98914ad3b06.tar.gz
SYNC-73520: Fixed Issue related to SetAppIcon Path (#3407)
* SYNC-73520: Fixed Issue related to SetAppIcon Path SYNC-73520 Removed the call to the function ConvertPathForURL() which was modifying the path as a URL Converting "!#$&'()*+,:;=?@[] " to there corresponding hex values. This function is not required for path. Co-authored-by: Andrii Kalinich <AKalinich@luxoft.com> Co-authored-by: Dmitriy Boltovskiy <dboltovskyi@luxoft.com> Co-authored-by: LitvinenkoIra <ilytvynenko@luxoft.com> Co-authored-by: Sidhartha <ssing314@ford.com>
Diffstat (limited to 'src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src')
-rw-r--r--src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_app_icon_request.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_app_icon_request.cc b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_app_icon_request.cc
index 9f30478111..9eb4c82721 100644
--- a/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_app_icon_request.cc
+++ b/src/components/application_manager/rpc_plugins/sdl_rpc_plugin/src/commands/mobile/set_app_icon_request.cc
@@ -116,8 +116,8 @@ void SetAppIconRequest::Run() {
msg_params[strings::sync_file_name] =
smart_objects::SmartObject(smart_objects::SmartType_Map);
- // For further use in on_event function
- full_file_path_for_hmi_ = file_system::ConvertPathForURL(full_file_path);
+ // for further use in on_event function
+ full_file_path_for_hmi_ = full_file_path;
msg_params[strings::sync_file_name][strings::value] = full_file_path_for_hmi_;