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

Commit 67da9bab authored by Thomas Stuart's avatar Thomas Stuart Committed by Android (Google) Code Review
Browse files

Merge "increase intermediate stuck voip call timeout to 2 mins" into main

parents 54d56453 d206891a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -447,12 +447,12 @@ public final class Timeouts {

    /**
     * Returns the duration of time a VoIP call can be in an intermediate state before Telecom will
     * try to clean up the call.
     * try to clean up the call.  The default is 2 minutes.
     * @return the state timeout in millis.
     */
    public static long getVoipCallIntermediateStateTimeoutMillis() {
        return DeviceConfig.getLong(DeviceConfig.NAMESPACE_TELEPHONY,
                INTERMEDIATE_STATE_VOIP_NORMAL_TIMEOUT_MILLIS, 60000L);
                INTERMEDIATE_STATE_VOIP_NORMAL_TIMEOUT_MILLIS, 120000L);
    }

    /**