зеркало из https://github.com/mozilla/gecko-dev.git
Bug 940617 - "Recently closed tabs" list should exclude tabs with about: URIs as the only history entry. r=ttaubert
This commit is contained in:
Родитель
64ea1cec79
Коммит
156d36df5b
|
@ -3435,9 +3435,8 @@ let SessionStoreInternal = {
|
|||
// store this tab's data.
|
||||
return aTabState.entries.length &&
|
||||
!(aTabState.entries.length == 1 &&
|
||||
(aTabState.entries[0].url == "about:blank" ||
|
||||
aTabState.entries[0].url == "about:newtab") &&
|
||||
!aTabState.userTypedValue);
|
||||
aTabState.entries[0].url.startsWith("about:") &&
|
||||
!aTabState.userTypedValue);
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Загрузка…
Ссылка в новой задаче