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

Commit f8f559fc authored by Youming Ye's avatar Youming Ye Committed by android-build-merger
Browse files

Merge "Fix permission check for TelephonyManager#isTtyModeSupported."

am: 2052fba2

Change-Id: I665d1e03f4e0232565282028238e6bfe723754ad
parents c039ad20 2052fba2
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -6680,14 +6680,12 @@ public class TelephonyManager {
    @Deprecated
    public boolean isTtyModeSupported() {
        try {
            ITelephony telephony = getITelephony();
            if (telephony != null) {
                return telephony.isTtyModeSupported();
            TelecomManager telecomManager = TelecomManager.from(mContext);
            if (telecomManager != null) {
                return telecomManager.isTtySupported();
            }
        } catch (RemoteException e) {
            Log.e(TAG, "Error calling ITelephony#isTtyModeSupported", e);
        } catch (SecurityException e) {
            Log.e(TAG, "Permission error calling ITelephony#isTtyModeSupported", e);
            Log.e(TAG, "Permission error calling TelecomManager#isTtySupported", e);
        }
        return false;
    }