revise check of system handler 53/10753/1 accepted/tizen/20131011.065701 accepted/tizen/20131011.171014 accepted/tizen/20131011.204614 submit/tizen/20131011.065600
authorYoungjae Shin <yj99.shin@samsung.com>
Fri, 11 Oct 2013 03:16:54 +0000 (12:16 +0900)
committerYoungjae Shin <yj99.shin@samsung.com>
Fri, 11 Oct 2013 03:16:54 +0000 (12:16 +0900)
Change-Id: I93e0326f402855403ad9154d3e2adae5ad5bd003

packaging/capi-network-nfc.spec
src/nfc.c

index bc413da..e8981a1 100644 (file)
@@ -1,6 +1,6 @@
 Name:       capi-network-nfc
 Summary:    NFC Core API
-Version:    0.1.2
+Version:    0.1.3
 Release:    0
 Group:      Network & Connectivity/NFC
 License:    Apache-2.0
index 99ec890..b2268f9 100644 (file)
--- a/src/nfc.c
+++ b/src/nfc.c
@@ -1540,7 +1540,10 @@ bool nfc_manager_is_system_handler_enabled(void)
 
        net_nfc_client_sys_handler_get_launch_popup_state(&state);
 
-       return (state == 0);
+       if (NET_NFC_LAUNCH_APP_SELECT == state)
+               return true;
+       else
+               return false;
 }
 
 /******************************Handover*******************************/