From b600f8b27e1dd5b3bc45f862da342c3ba4593dc6 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Wed, 4 May 2022 19:06:46 -0700 Subject: [PATCH] Enable qt service work cull in qutebrowser Newest Qute has a crash bug if you don't cull QT service workers on startup. This used to be a Windows thing but now it's on Linux I guess, so let's just make it the default. --- .config/qutebrowser/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 6d97a46..653bbe5 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -337,4 +337,7 @@ c.content.blocking.method = 'both' # Try to get around paywalls and adblock-block with Google Cache c.aliases['paywall'] = 'open https://www.google.com/search?q=cache:{url}' +# Remove service workers on start to get around different bugs in Win and Lin +c.qt.workarounds.remove_service_workers = True + config.load_autoconfig()