lint: fix php

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/602/head
Varun Patil 2023-04-19 17:49:30 -07:00
parent 9ab16e4478
commit 4239e05b3c
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ class Exif
// Filter out January 1, 1904 12:00:00 AM UTC
// Exiftool returns this as the date when QuickTimeUTC is set and
// the date is set to 0000:00:00 00:00:00
if ($timestamp === -2082844800) {
if (-2082844800 === $timestamp) {
throw new \Exception("Blacklisted date: {$exifDate}");
}