Merge "Return REQUEST_NOT_SUPPORTED if HAL version is below 1.6" am: ae5a6a7110 am: 3126c67dbb

Original change: https://android-review.googlesource.com/c/platform/packages/services/Telephony/+/1615836

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Ibe16ac985c55760fb78eb352c3642a716ebab511
diff --git a/src/com/android/phone/PhoneInterfaceManager.java b/src/com/android/phone/PhoneInterfaceManager.java
index 14b1b95..348f4ce 100755
--- a/src/com/android/phone/PhoneInterfaceManager.java
+++ b/src/com/android/phone/PhoneInterfaceManager.java
@@ -864,6 +864,10 @@
                                 request.result =
                                         TelephonyManager
                                                 .ENABLE_NR_DUAL_CONNECTIVITY_RADIO_NOT_AVAILABLE;
+                            } else if (error == CommandException.Error.REQUEST_NOT_SUPPORTED) {
+                                request.result =
+                                        TelephonyManager
+                                                .ENABLE_NR_DUAL_CONNECTIVITY_NOT_SUPPORTED;
                             }
                             loge("enableNrDualConnectivity" + ": CommandException: "
                                     + ar.exception);