From 62302d0781d37e7b2c76789f0d49a08f38bb3bb6 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Fri, 14 Apr 2023 00:52:47 +0100 Subject: [PATCH] qutebrowser: disable url interceptor/redirector I just caused issues. I need to find a more robust way of doing this. --- qutebrowser/config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qutebrowser/config.py b/qutebrowser/config.py index 5a091a5..81a4238 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -39,7 +39,10 @@ try: message.info("Redirecting to " + url.toString()) info.redirect(url) - interceptor.register(intercept) + #FIXME: trying this disabled for a bit to test if qb crashes less + #2022-08-16 enabling it again (and off again) + # yeah crashed immediately + # interceptor.register(intercept) except ImportError: pass -- 2.48.1