From e3ebfdfba456266e6ad10a9a696162689a4f5b2e Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sun, 2 Feb 2020 08:49:24 -0500 Subject: [PATCH] Fix improper initial value for `suspendTabsUntilReady` --- src/js/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/background.js b/src/js/background.js index f5cb891..502b03e 100644 --- a/src/js/background.js +++ b/src/js/background.js @@ -124,7 +124,7 @@ const rawSettingsDefault = { '' ].join(''), framePlaceholderBackground: 'default', - suspendTabsUntilReady: false + suspendTabsUntilReady: 'unset' }; /******************************************************************************/