From 00f456fd7f3cb3fe6275a48934f03db9061d2647 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 13 Jul 2017 17:26:58 +0200 Subject: Fix the "try again" button on error pages Fixes #2810 (cherry picked from commit 5c367e7ab24bb3b885afe0eb7c1c95ad0caf2634) --- CHANGELOG.asciidoc | 2 ++ qutebrowser/html/error.html | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 2a8e2869a..06e2b25a7 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -23,6 +23,8 @@ Fixes - Fixed empty space being shown after tabs in the tabbar in some cases. - Fixed `:restart` in private browsing mode. - Fixed printing on macOS. +- Closing a pinned tab via mouse now also prompts for confirmation. +- The "try again" button on error pages works correctly again. v0.11.0 ------- diff --git a/qutebrowser/html/error.html b/qutebrowser/html/error.html index 06261a06a..615e4ba8b 100644 --- a/qutebrowser/html/error.html +++ b/qutebrowser/html/error.html @@ -61,7 +61,7 @@ li { {{ super() }} function tryagain() { - location.href = url; + location.href = "{{ url }}"; } {% endblock %} -- cgit v1.2.3-54-g00ecf