diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-04 03:17:39 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-04 03:17:39 -0400 |
commit | 3cf6d2b2d73b3b09fb268a2b3927d920883745fb (patch) | |
tree | 1fbeb191509fedf38135deb0516eab51201640d4 /application/palemoon/components/sessionstore/nsSessionStartup.js | |
parent | 59bf4204a84f7638d3f89a29bc7c04e5dc401369 (diff) | |
download | UXP-3cf6d2b2d73b3b09fb268a2b3927d920883745fb.tar UXP-3cf6d2b2d73b3b09fb268a2b3927d920883745fb.tar.gz UXP-3cf6d2b2d73b3b09fb268a2b3927d920883745fb.tar.lz UXP-3cf6d2b2d73b3b09fb268a2b3927d920883745fb.tar.xz UXP-3cf6d2b2d73b3b09fb268a2b3927d920883745fb.zip |
Sync Pale Moon code
Diffstat (limited to 'application/palemoon/components/sessionstore/nsSessionStartup.js')
-rw-r--r-- | application/palemoon/components/sessionstore/nsSessionStartup.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/application/palemoon/components/sessionstore/nsSessionStartup.js b/application/palemoon/components/sessionstore/nsSessionStartup.js index 024246619..7f07e9050 100644 --- a/application/palemoon/components/sessionstore/nsSessionStartup.js +++ b/application/palemoon/components/sessionstore/nsSessionStartup.js @@ -77,9 +77,14 @@ SessionStartup.prototype = { return; } - _SessionFile.read().then( - this._onSessionFileRead.bind(this) - ); + if (Services.prefs.getBoolPref("browser.sessionstore.resume_session_once") || + Services.prefs.getIntPref("browser.startup.page") == 3) { + this._ensureInitialized(); + } else { + _SessionFile.read().then( + this._onSessionFileRead.bind(this) + ); + } }, // Wrap a string as a nsISupports |