зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1610271 - Null-check updateManager in UrlbarProviderSearchTips.lastBrowserUpdateDate. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D60434 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
45c0f04775
Коммит
b23f9e9a90
|
@ -412,7 +412,7 @@ async function lastBrowserUpdateDate() {
|
|||
// Get the newest update in the update history. This isn't perfect
|
||||
// because these dates are when updates are applied, not when the
|
||||
// user restarts with the update. See bug 1595328.
|
||||
if (updateManager.updateCount) {
|
||||
if (updateManager && updateManager.updateCount) {
|
||||
let update = updateManager.getUpdateAt(0);
|
||||
return update.installDate;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче