Some old application did not handle runtime popups properly and
crashed during waiting for user response.
New plugin will give answer immiediatelly.
Change-Id: I4f1a170549f9ae1967568594afa91365f15d67de
if (strcmp("Allow", result) == 0) {
pkg_data->status = EINA_TRUE;
break;
- } else if (strcmp("Deny", result) == 0 || strcmp("Ask user", result) == 0) {
+ } else if (strcmp("Deny", result) == 0 || strcmp("ASK_USER_LEGACY", result) == 0 || strcmp("PRIVACY_DENY", result) == 0 || strcmp("Ask user", result) == 0) {
pkg_data->status = EINA_FALSE;
break;
} else {
char* level;
if (id->status) {
- level = "Ask user";
+ level = "ASK_USER_LEGACY";
id->status = false;
} else {
level = "Allow";