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; }