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:
Martynas Bagdonas 2024-09-10 13:55:58 +03:00
parent 42219772a7
commit 5695d08e7d

View file

@ -1197,7 +1197,7 @@ function ZoteroProtocolHandler() {
var location = {};
if (page) {
location.pageIndex = parseInt(page);
location.pageIndex = parseInt(page) - 1;
}
if (annotation) {
location.annotationID = annotation;