X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fhomescreen.c;h=ee4b9b5fc50581f86f82ccfb9127320ebb8e65b3;hb=b5702d25b7b5386fabd6a81a748ea2d6fe647fcd;hp=f1a8fcd233489c210bc4712f47bddd76c52f4e5b;hpb=321f08ed8d0a4d3b1f4bd486e8a4240f4d3443ee;p=apps%2Fagl-service-homescreen.git diff --git a/src/homescreen.c b/src/homescreen.c index f1a8fcd..ee4b9b5 100644 --- a/src/homescreen.c +++ b/src/homescreen.c @@ -47,7 +47,7 @@ static struct afb_event ev_reserved; static const char _error[] = "error"; -static const char _application_name[] = "application_name"; +static const char _application_id[] = "application_id"; static const char _display_message[] = "display_message"; static const char _reply_message[] = "reply_message"; @@ -69,7 +69,7 @@ static void pingSample(struct afb_req request) * * #### Parameters * Request key - * - application_name : application name + * - application_id : application id * * #### Return * Nothing @@ -80,14 +80,14 @@ static void tap_shortcut (struct afb_req request) HMI_NOTICE("homescreen-service","called."); int ret = 0; - const char* value = afb_req_value(request, _application_name); + const char* value = afb_req_value(request, _application_id); if (value) { HMI_NOTICE("homescreen-service","request params = %s.", value); struct json_object* push_obj = json_object_new_object(); hs_add_object_to_json_object_str( push_obj, 2, - _application_name, value); + _application_id, value); afb_event_push(ev_tap_shortcut, push_obj); } else { afb_req_fail_f(request, "failed", "called %s, Unknown palameter", __FUNCTION__);