[pdf] Fix bug #77234

This commit is contained in:
Nikita Khromov
2025-10-03 14:10:41 +07:00
committed by Ilya Kirillov
parent d64cde525b
commit 80fffd2353

View File

@ -4698,6 +4698,10 @@
}
function checkNeedRedactPage(oPageInfo) {
if (!oPageInfo) {
return false;
}
if (oPageInfo.annots.find(function(annot) {
return annot.IsRedact() && annot.GetRedactId();
})) {
@ -4964,6 +4968,10 @@
}
function checkNeedRedactPage(oPageInfo) {
if (!oPageInfo) {
return false;
}
if (oPageInfo.annots.find(function(annot) {
return annot.IsRedact() && annot.GetRedactId();
})) {