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

Commit 2052fba2 authored by Youming Ye's avatar Youming Ye Committed by Gerrit Code Review
Browse files

Merge "Fix permission check for TelephonyManager#isTtyModeSupported."

parents 7e83b790 9b3eb9c9
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;
    }