Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6c376fea authored by Xia Ying's avatar Xia Ying Committed by Amit Mahajan
Browse files

[ADR] TS51.010-1 34.2.9.1 failed to send concatenated segments SMS to short

code

On handling EVENT_SEND_CONFIRMED_SMS, we should updte mExpectMore
based on mPendingTrackerCount.

Bug: 17570854
Change-Id: I9071031e30c724e05e9738dad3b476289dc79afc
parent de9bf648
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -302,6 +302,11 @@ public abstract class SMSDispatcher extends Handler {
            if (tracker.isMultipart()) {
                sendMultipartSms(tracker);
            } else {
                if (mPendingTrackerCount > 1) {
                    tracker.mExpectMore = true;
                } else {
                    tracker.mExpectMore = false;
                }
                sendSms(tracker);
            }
            mPendingTrackerCount--;