<arg type="i" name="type"/>
</signal>
+ <signal name="RefreshStage">
+ <arg type="i" name="stage"/>
+ </signal>
<property name="cf_state" type="i" access="read"/>
</interface>
%define major 0
%define minor 3
-%define patchlevel 80
+%define patchlevel 81
Name: tel-plugin-dbus_tapi
Version: %{major}.%{minor}.%{patchlevel}
call_status = TCORE_CALL_STATUS_DIALING;
}
+ if(TCORE_CALL_STATUS_MT_SETUP == call_status){
+ dbg("MT_SETUP state but Incoming noti not notifed to app," \
+ "so change it to 'IDLE' ");
+ call_status = TCORE_CALL_STATUS_IDLE;
+ }
+
call_multiparty_state = tcore_call_object_get_multiparty_state(call_obj);
is_volte_call = tcore_call_object_get_is_volte_call(call_obj);
is_hd_icon = tcore_call_object_get_hd_icon(call_obj);
}
break;
+ case TNOTI_SIM_REFRESH_STAGE: {
+ const struct tnoti_sim_refresh_stage *n_sim_refresh_stage = data;
+
+ info("[%s] SIM_REFRESH_STAGE - stage[%d]", cp_name, n_sim_refresh_stage->stage);
+
+ telephony_sim_emit_refresh_stage(sim, n_sim_refresh_stage->stage);
+ }
+ break;
+
case TNOTI_SIM_CALL_FORWARD_STATE: {
const struct tnoti_sim_call_forward_state *info = data;