From deb0e5ce16b7b9698b788138c77d5c815cc66a1d Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Wed, 22 Nov 2023 11:51:01 -0800 Subject: [PATCH] lp: switch to new tag for 12.70 Signed-off-by: Varun Patil --- lib/Db/LivePhoto.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Db/LivePhoto.php b/lib/Db/LivePhoto.php index 278a1858..151add02 100644 --- a/lib/Db/LivePhoto.php +++ b/lib/Db/LivePhoto.php @@ -26,7 +26,7 @@ class LivePhoto public function getLivePhotoId(File $file, array $exif): string { // Apple JPEG (MOV has ContentIdentifier) - if ($uuid = ($exif['MediaGroupUUID'] ?? null)) { + if ($uuid = ($exif['ContentIdentifier'] ?? $exif['MediaGroupUUID'] ?? null)) { return (string) $uuid; }