From 01dfdc79fb3347dc379b128fed689b5e28dc4cf2 Mon Sep 17 00:00:00 2001 From: Fedor Date: Fri, 3 Apr 2020 20:55:49 +0300 Subject: [PATCH] [Mypal] Change sessionstore cache behavior to soft refresh. --- application/palemoon/app/profile/mypal.js | 4 ++-- application/palemoon/app/profile/palemoon.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/application/palemoon/app/profile/mypal.js b/application/palemoon/app/profile/mypal.js index 4067f84e0..0d5dcd510 100644 --- a/application/palemoon/app/profile/mypal.js +++ b/application/palemoon/app/profile/mypal.js @@ -860,10 +860,10 @@ pref("browser.sessionstore.restore_hidden_tabs", false); pref("browser.sessionstore.restore_pinned_tabs_on_demand", false); // Pale Moon: Allow the user to bypass cached versions of pages when restoring // tabs from a previous session -// 0 = standard behavior: pull fully from cache +// 0 = pull fully from cache // 1 = perform a soft refresh when restoring a tab (check network) // 2 = perform a hard refresh when restoring a tab (bypass cache completely) -pref("browser.sessionstore.cache_behavior", 0); +pref("browser.sessionstore.cache_behavior", 1); // Pale Moon: Allow exact positioning of windows to previous locations, even // if they would be outside of the screen bounds pref("browser.sessionstore.exactPos", false); diff --git a/application/palemoon/app/profile/palemoon.js b/application/palemoon/app/profile/palemoon.js index 82088ed86..8fccd2cd7 100644 --- a/application/palemoon/app/profile/palemoon.js +++ b/application/palemoon/app/profile/palemoon.js @@ -860,10 +860,10 @@ pref("browser.sessionstore.restore_hidden_tabs", false); pref("browser.sessionstore.restore_pinned_tabs_on_demand", false); // Pale Moon: Allow the user to bypass cached versions of pages when restoring // tabs from a previous session -// 0 = standard behavior: pull fully from cache +// 0 = pull fully from cache // 1 = perform a soft refresh when restoring a tab (check network) // 2 = perform a hard refresh when restoring a tab (bypass cache completely) -pref("browser.sessionstore.cache_behavior", 0); +pref("browser.sessionstore.cache_behavior", 1); // Pale Moon: Allow exact positioning of windows to previous locations, even // if they would be outside of the screen bounds pref("browser.sessionstore.exactPos", false);