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

Commit 73c54cd9 authored by Jack Yu's avatar Jack Yu Committed by Automerger Merge Worker
Browse files

Merge "Improved the network type to string" into tm-dev am: 0488b34b

parents 8b11f27c 0488b34b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3227,8 +3227,10 @@ public class TelephonyManager {
                return "LTE_CA";
            case NETWORK_TYPE_NR:
                return "NR";
            default:
            case NETWORK_TYPE_UNKNOWN:
                return "UNKNOWN";
            default:
                return "UNKNOWN(" + type + ")";
        }
    }