summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2016-11-24 17:57:34 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2016-11-24 17:57:34 +0900
commit4ef26bfc1f3e0f60a1a3277d7c17dbc981fef64e (patch)
tree9f397a94fa147887a2c8d9d07310c6d4025f9fa9
parentb96273e65d3cfc11be6317e986b2dee80dce48e8 (diff)
downloadsyspopup-accepted/tizen/3.0/common/20161125.101655.tar.gz
syspopup-accepted/tizen/3.0/common/20161125.101655.tar.bz2
syspopup-accepted/tizen/3.0/common/20161125.101655.zip
- Allow "opening" state Change-Id: Icb087026112943008a5fb2493560ab00f57c7310 Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rwxr-xr-xsyspopup-caller/syspopup_caller.c3
1 files changed, 2 insertions, 1 deletions
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]);