Fix the "try again" button on error pages

Fixes #2810
This commit is contained in:
Florian Bruhin 2017-07-13 17:26:58 +02:00
parent 9898c1ba4b
commit 5c367e7ab2
2 changed files with 2 additions and 1 deletions

View File

@ -66,6 +66,7 @@ Fixes
- Fixed `:restart` in private browsing mode. - Fixed `:restart` in private browsing mode.
- Fixed printing on macOS. - Fixed printing on macOS.
- Closing a pinned tab via mouse now also prompts for confirmation. - Closing a pinned tab via mouse now also prompts for confirmation.
- The "try again" button on error pages works correctly again.
v0.11.0 v0.11.0
------- -------

View File

@ -61,7 +61,7 @@ li {
{{ super() }} {{ super() }}
function tryagain() function tryagain()
{ {
location.href = url; location.href = "{{ url }}";
} }
{% endblock %} {% endblock %}