Fix zotero://open-pdf navigating one page too far
Fixes https://forums.zotero.org/discussion/117752/inconsistent-page-numbering-in-zotero-7-url-links-compared-to-zotero-6
This commit is contained in:
parent
42219772a7
commit
5695d08e7d
1 changed files with 1 additions and 1 deletions
|
@ -1197,7 +1197,7 @@ function ZoteroProtocolHandler() {
|
|||
var location = {};
|
||||
|
||||
if (page) {
|
||||
location.pageIndex = parseInt(page);
|
||||
location.pageIndex = parseInt(page) - 1;
|
||||
}
|
||||
if (annotation) {
|
||||
location.annotationID = annotation;
|
||||
|
|
Loading…
Reference in a new issue