[#312] remove CS service notification in MT-SMS

This commit is contained in:
Sukchan Lee 2019-11-29 11:39:32 +09:00
parent 46e04210da
commit 552045aa28
1 changed files with 6 additions and 1 deletions

View File

@ -323,7 +323,12 @@ void sgsap_handle_paging_request(mme_vlr_t *vlr, ogs_pkbuf_t *pkbuf)
goto paging_reject;
} else {
nas_send_cs_service_notification(mme_ue);
if (CS_CALL_SERVICE_INDICATOR(mme_ue)) {
nas_send_cs_service_notification(mme_ue);
} else if (SMS_SERVICE_INDICATOR(mme_ue)) {
/* Nothing to do */
} else
goto paging_reject;
}
return;