Add NR network type on ECC RAT check 67/225467/2 accepted/tizen_6.0_unified accepted/tizen_6.0_unified_hotfix tizen_6.0 tizen_6.0_hotfix accepted/tizen/6.0/unified/20201030.113421 accepted/tizen/6.0/unified/hotfix/20201103.001321 accepted/tizen/6.5/unified/20211028.120913 accepted/tizen/unified/20200423.054527 submit/tizen/20200324.013243 submit/tizen/20200422.071205 submit/tizen_6.0/20201029.205105 submit/tizen_6.0_hotfix/20201102.192505 submit/tizen_6.0_hotfix/20201103.114805 submit/tizen_6.5/20211028.162501 tizen_6.0.m2_release tizen_6.5.m2_release
authorsinikang <sinikang@samsung.com>
Thu, 20 Feb 2020 06:33:13 +0000 (15:33 +0900)
committersinikang <sinikang@samsung.com>
Tue, 25 Feb 2020 03:29:17 +0000 (12:29 +0900)
Change-Id: Iabb2cc853ad31048c0fc16f89fc9b85012e71251
Signed-off-by: sinikang <sinikang@samsung.com>
packaging/tel-plugin-manager.spec
src/manager_call.c

index 68715da..f6b7aa3 100644 (file)
@@ -1,6 +1,6 @@
 %define major 0
 %define minor 1
-%define patchlevel 19
+%define patchlevel 20
 
 Name:           tel-plugin-manager
 Version:        %{major}.%{minor}.%{patchlevel}
index 4617288..2a98aac 100644 (file)
@@ -204,7 +204,7 @@ static enum tcore_hook_return on_noti_manager_ecc_rat(Server *server,
                tcore_user_request_unref(ur);
                g_free(modem_name);
 
-               if (noti_data->ecc_rat == NETWORK_ACT_LTE) {
+               if (noti_data->ecc_rat == NETWORK_ACT_LTE || noti_data->ecc_rat == NETWORK_ACT_NR) {
                        dbg("ecc_rat[%d], request to IMS", noti_data->ecc_rat);
                        tcore_call_object_set_is_volte_call(call_obj, TRUE);
                        tcore_server_dispatch_request_ex(server, ur_dial, TCORE_OPS_TYPE_IMS);
@@ -260,7 +260,7 @@ static enum tcore_hook_return on_noti_manager_ecc_rat_for_silent_redial(Server *
                tcore_user_request_set_command(ur_dial, TREQ_CALL_DIAL);
                tcore_user_request_set_response_hook(ur_dial, on_resp_manager_silent_redial, arg);
 
-               if (noti_data->ecc_rat == NETWORK_ACT_LTE) {
+               if (noti_data->ecc_rat >= NETWORK_ACT_LTE) {
                        dbg("ecc_rat[%d], request to IMS", noti_data->ecc_rat);
                        tcore_call_object_set_is_volte_call(call_obj, TRUE);