From: Jagrat Patidar Date: Tue, 22 Sep 2020 10:36:29 +0000 (+0530) Subject: This patch fixes sound player flickering issue TSIX-6495 X-Git-Tag: submit/tizen/20200922.110136^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8553e0b584b4f90ffa15e0468821ef77dc9e6bf;p=profile%2Fmobile%2Fapps%2Fnative%2Fmusic-player.git This patch fixes sound player flickering issue TSIX-6495 Change-Id: I597f812614db101dcc8e08d3aa90ad927af1eedc --- diff --git a/src/mp-main.c b/src/mp-main.c index 4d5ede4..c8f1bda 100755 --- a/src/mp-main.c +++ b/src/mp-main.c @@ -1056,7 +1056,8 @@ _mp_main_parse_service(struct appdata *ad, app_control_h app_control, ad->disable_detail_view = false; } - if (!app_control_get_extra_data(app_control, APP_EXIT_STATUS, &value)) { + int check = app_control_get_extra_data(app_control, APP_EXIT_STATUS, &value); + if (!check || check == APP_CONTROL_ERROR_KEY_NOT_FOUND) { DEBUG_TRACE("Application Exit Status is %s", value); ad->exit_status = false; } else {