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

Commit 2e7e0925 authored by Stuart Scott's avatar Stuart Scott Committed by Robert Greenwalt
Browse files

DO NOT MERGE - Dont fail if modem ids are empty.

bug: 20617219
Change-Id: Ic78e6f6bd6d1f6bce420a35a85b12fd5ef99ab77
parent 651c3774
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -352,7 +352,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");
                    }