diff options
author | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2019-04-08 18:12:40 -0400 |
---|---|---|
committer | Ascrod <32915892+Ascrod@users.noreply.github.com> | 2019-04-13 11:37:45 -0400 |
commit | 9a37ab727e68f44e26e04b18f2cab40a0ac4fdb5 (patch) | |
tree | f2f676dbca9e8beb16895e97d733bc9de70ecd07 /application/palemoon/components/nsBrowserGlue.js | |
parent | 7d1126fad325e889559b1f9113cbbb17d49842fa (diff) | |
download | UXP-9a37ab727e68f44e26e04b18f2cab40a0ac4fdb5.tar UXP-9a37ab727e68f44e26e04b18f2cab40a0ac4fdb5.tar.gz UXP-9a37ab727e68f44e26e04b18f2cab40a0ac4fdb5.tar.lz UXP-9a37ab727e68f44e26e04b18f2cab40a0ac4fdb5.tar.xz UXP-9a37ab727e68f44e26e04b18f2cab40a0ac4fdb5.zip |
Issue #991 Part 1: Pale Moon
Diffstat (limited to 'application/palemoon/components/nsBrowserGlue.js')
-rw-r--r-- | application/palemoon/components/nsBrowserGlue.js | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/application/palemoon/components/nsBrowserGlue.js b/application/palemoon/components/nsBrowserGlue.js index ad48dab29..01a133833 100644 --- a/application/palemoon/components/nsBrowserGlue.js +++ b/application/palemoon/components/nsBrowserGlue.js @@ -990,14 +990,8 @@ BrowserGlue.prototype = { // An import operation is about to run. // Don't try to recreate smart bookmarks if autoExportHTML is true or // smart bookmarks are disabled. - var autoExportHTML = false; - try { - autoExportHTML = Services.prefs.getBoolPref("browser.bookmarks.autoExportHTML"); - } catch(ex) {} - var smartBookmarksVersion = 0; - try { - smartBookmarksVersion = Services.prefs.getIntPref("browser.places.smartBookmarksVersion"); - } catch(ex) {} + var autoExportHTML = Services.prefs.getBoolPref("browser.bookmarks.autoExportHTML", false); + var smartBookmarksVersion = Services.prefs.getIntPref("browser.places.smartBookmarksVersion", 0); if (!autoExportHTML && smartBookmarksVersion != -1) Services.prefs.setIntPref("browser.places.smartBookmarksVersion", 0); @@ -1556,10 +1550,7 @@ BrowserGlue.prototype = { const MAX_RESULTS = 10; // Get current smart bookmarks version. If not set, create them. - let smartBookmarksCurrentVersion = 0; - try { - smartBookmarksCurrentVersion = Services.prefs.getIntPref(SMART_BOOKMARKS_PREF); - } catch(ex) {} + let smartBookmarksCurrentVersion = Services.prefs.getIntPref(SMART_BOOKMARKS_PREF, 0); // If version is current or smart bookmarks are disabled, just bail out. if (smartBookmarksCurrentVersion == -1 || |