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

Commit 3809edb0 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix bug, AccessNetworkType.NGRAN was not mapping IRadio1.1 in Android R"

parents a20f2ce6 85e26fa5
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -2315,7 +2315,9 @@ public class RIL extends BaseCommands implements CommandsInterface {
                    android.hardware.radio.V1_5.RadioAccessSpecifier rasInHalFormat =
                            convertRadioAccessSpecifierToRadioHAL_1_5(ras);
                    if (rasInHalFormat == null) {
                        return;
                        AsyncResult.forMessage(result, null,
                                CommandException.fromRilErrno(REQUEST_NOT_SUPPORTED));
                        result.sendToTarget();
                    }
                    request.specifiers.add(rasInHalFormat);
                }
@@ -2349,7 +2351,9 @@ public class RIL extends BaseCommands implements CommandsInterface {
                    android.hardware.radio.V1_1.RadioAccessSpecifier rasInHalFormat =
                            convertRadioAccessSpecifierToRadioHAL(ras);
                    if (rasInHalFormat == null) {
                        return;
                        AsyncResult.forMessage(result, null,
                                CommandException.fromRilErrno(REQUEST_NOT_SUPPORTED));
                        result.sendToTarget();
                    }

                    request.specifiers.add(rasInHalFormat);
@@ -2388,7 +2392,9 @@ public class RIL extends BaseCommands implements CommandsInterface {
                    android.hardware.radio.V1_1.RadioAccessSpecifier rasInHalFormat =
                            convertRadioAccessSpecifierToRadioHAL(ras);
                    if (rasInHalFormat == null) {
                        return;
                        AsyncResult.forMessage(result, null,
                                CommandException.fromRilErrno(REQUEST_NOT_SUPPORTED));
                        result.sendToTarget();
                    }

                    request.specifiers.add(rasInHalFormat);