summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2017-07-13 17:26:58 +0200
committerFlorian Bruhin <git@the-compiler.org>2017-07-13 17:28:06 +0200
commit00f456fd7f3cb3fe6275a48934f03db9061d2647 (patch)
tree93f0b7385d7a0e845f6264826c8f10a7d98e9d16
parent00d5aa6b22e2fdc4a7a1491a29b2a536e46a5564 (diff)
downloadqutebrowser-00f456fd7f3cb3fe6275a48934f03db9061d2647.tar.gz
qutebrowser-00f456fd7f3cb3fe6275a48934f03db9061d2647.zip
Fix the "try again" button on error pages
Fixes #2810 (cherry picked from commit 5c367e7ab24bb3b885afe0eb7c1c95ad0caf2634)
-rw-r--r--CHANGELOG.asciidoc2
-rw-r--r--qutebrowser/html/error.html2
2 files changed, 3 insertions, 1 deletions
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 %}