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

Commit 07c51b1a authored by Stuart Scott's avatar Stuart Scott
Browse files

Dont fail if modem ids are empty.

bug: 20617219
Change-Id: Ic9079de64de2629093aaa1ea55417a7b790549e6
parent efb61cfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -361,7 +361,7 @@ public class ProxyController {
            if (mRadioAccessFamilyStatusCounter == 0) {
                HashSet<String> modemsInUse = new HashSet<String>(mNewLogicalModemIds.length);
                for (String modemId : mNewLogicalModemIds) {
                    if (!modemsInUse.add(modemId)) {
                    if (!modemId.equals("") && !modemsInUse.add(modemId)) {
                        mTransactionFailed = true;
                        Log.wtf(LOG_TAG, "ERROR: sending down the same id for different phones");
                    }