From 9c99c22f1b4edee2d43efe2365beca34a275fbd9 Mon Sep 17 00:00:00 2001 From: Martin Tournoij Date: Fri, 29 May 2015 23:49:48 +0200 Subject: [PATCH] Fix issue #701 --- qutebrowser/browser/commands.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 735deba47..337823122 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -657,6 +657,9 @@ class CommandDispatcher: count: multiplier """ frame = self._current_widget().page().currentFrame() + if not frame.url().isValid() == '': # Issue 701 + return + if (bottom_navigate is not None and frame.scrollPosition().y() >= frame.scrollBarMaximum(Qt.Vertical)):