Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Bug 832814 - "Enter NCK code" popup always opens on restart or when l…
Browse files Browse the repository at this point in the history
…eaving airplane mode r=jaoo

Bumped up the timeout for displaying the network locked panel.
(cherry picked from commit e813db6)
  • Loading branch information
julienw authored and jhford committed Feb 7, 2013
1 parent 7c1718d commit e2c9020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/system/js/sim_lock.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ var SimLock = {
// XXXX: After unlocking the SIM the cardState is
// 'networkLocked' but it changes inmediately to 'ready'
// if the phone is not SIM-locked. If the cardState
// is still 'networkLocked' after two seconds we unlock
// is still 'networkLocked' after 20 seconds we unlock
// the network control key lock (network personalization).
setTimeout(function checkState() {
if (conn.cardState == 'networkLocked') {
SimPinDialog.show('unlock', SimLock.onClose);
}
}, 5000);
}, 20000);
break;
}
return false;
Expand Down

0 comments on commit e2c9020

Please sign in to comment.