From: Hwankyu Jhun Date: Thu, 24 Nov 2016 08:57:34 +0000 (+0900) Subject: Fix syspopup_launch_for_uid X-Git-Tag: accepted/tizen/3.0/common/20161125.101655^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=4ef26bfc1f3e0f60a1a3277d7c17dbc981fef64e;p=platform%2Fcore%2Fbase%2Fsyspopup.git Fix syspopup_launch_for_uid - Allow "opening" state Change-Id: Icb087026112943008a5fb2493560ab00f57c7310 Signed-off-by: Hwankyu Jhun --- diff --git a/syspopup-caller/syspopup_caller.c b/syspopup-caller/syspopup_caller.c index e4e8ba7..2d513a3 100755 --- a/syspopup-caller/syspopup_caller.c +++ b/syspopup-caller/syspopup_caller.c @@ -103,7 +103,8 @@ API int syspopup_launch_for_uid(char *popup_name, bundle *b, uid_t uid) if (sd_uid_get_state(uids[i], &state) < 0) continue; - if (state && !strcmp(state, "online")) { + if (state && (!strcmp(state, "online") || + !strcmp(state, "opening"))) { ret = aul_launch_app_for_uid( info->pkgname, b, uids[i]);