diff --git a/apps/system/js/lockscreen.js b/apps/system/js/lockscreen.js index 2527aeab639c..10d4fb22fa43 100644 --- a/apps/system/js/lockscreen.js +++ b/apps/system/js/lockscreen.js @@ -1071,7 +1071,7 @@ var LockScreen = { // 'notSearching', 'searching', 'denied', 'registered', // where the latter three mean the phone is trying to grab the network. // See https://bugzilla.mozilla.org/show_bug.cgi?id=777057 - if ('state' in voice && voice.state == 'notSearching') { + if (voice && 'state' in voice && voice.state == 'notSearching') { updateConnstateLine1('noNetwork'); return; }