From f881265ce3e581eb3eef6ba5ca7ac75912f42aec Mon Sep 17 00:00:00 2001 From: Zankaria Date: Tue, 25 Mar 2025 22:23:37 +0100 Subject: [PATCH] PngExifReader.php: remove bad comment --- inc/Data/Driver/Metadata/PngExifReader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/Data/Driver/Metadata/PngExifReader.php b/inc/Data/Driver/Metadata/PngExifReader.php index 726c5214..0cce4734 100644 --- a/inc/Data/Driver/Metadata/PngExifReader.php +++ b/inc/Data/Driver/Metadata/PngExifReader.php @@ -5,7 +5,7 @@ namespace Vichan\Data\Driver\Metadata; class PngExifReader implements ExifReader { // Chunks larger than this will be ignored. private const MAX_CHUNK_SIZE = 1048576; // 1 MB. - private const MAX_CHUNK_COUNT = 32; // 1 MB + private const MAX_CHUNK_COUNT = 32; private const ORIENTATION_TAG_ID = 0x0112; // Exif data type identifier. private const TYPE_SHORT = 0x3;