Commit cc15b66d authored by aligungr's avatar aligungr

eCall inactive bug fix

parent 1d540f12
......@@ -81,9 +81,9 @@ bool NasMm::switchToECallInactivityIfNeeded()
if (m_cmState != ECmState::CM_IDLE)
return false;
if (!(!m_timers->t3444.isRunning() && m_timers->t3445.isRunning()) ||
(!m_timers->t3445.isRunning() && m_timers->t3444.isRunning()) ||
(!m_timers->t3444.isRunning() && !m_timers->t3445.isRunning()))
if (!((!m_timers->t3444.isRunning() && m_timers->t3445.isRunning()) ||
(!m_timers->t3445.isRunning() && m_timers->t3444.isRunning()) ||
(!m_timers->t3444.isRunning() && !m_timers->t3445.isRunning())))
return false;
// Perform item c) in 5.5.3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment