From cb533380d96affc3ac7a74464e1523922b916b46 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 26 Aug 2025 18:40:11 +0200 Subject: [PATCH] #7704 --- src/CommandLine/Poppler.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/CommandLine/Poppler.php b/src/CommandLine/Poppler.php index 567a660..f4f5eba 100644 --- a/src/CommandLine/Poppler.php +++ b/src/CommandLine/Poppler.php @@ -114,7 +114,9 @@ class Poppler public static function extractAreaFilehash($file, $page, $rect, $options): string { $f = Files::hashFileAttributes($file) . '||' . '++' . json_encode($rect) . '**' . json_encode($options) . '||' . $page . '!!'; - return hash('sha256', $f); + $hash = hash('sha256', $f); + error_log($f, $hash); + return $hash; } /** -- 2.39.5