We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bc46a5 commit 9fa86e2Copy full SHA for 9fa86e2
common/content/browser.js
@@ -210,8 +210,8 @@ const Browser = Module("browser", {
210
mappings.add([modes.NORMAL], ["gr"],
211
"View current tab in Reader View",
212
function () {
213
- let uri = content.document.location;
214
- if !(uri.startsWith("about:reader")) {
+ let uri = content.document.location.href;
+ if (!uri.startsWith("about:reader")) {
215
liberator.open('about:reader?url=' + uri);
216
} else {
217
liberator.open(uri.substr("about:reader?url=".length));
0 commit comments