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

Commit dc3d0537 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Telecom: Disable "Add call" if the call is not active or on hold"

parents e4651db9 6f7928e9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1000,6 +1000,10 @@ public final class CallsManager extends Call.ListenerBase {
                return false;
            }
        }

        if ((call.getState() != CallState.ACTIVE) && (call.getState() != CallState.ON_HOLD)) {
            return false;
        }
        return true;
    }