Skip to content

Commit

Permalink
fix(mobile): live photos playback (immich-app#14731)
Browse files Browse the repository at this point in the history
  • Loading branch information
alextran1502 authored Dec 16, 2024
1 parent c7b44be commit a2dd962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/pages/common/native_video_viewer.page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class NativeVideoViewerPage extends HookConsumerWidget {

try {
final local = asset.local;
if (local != null) {
if (local != null && asset.livePhotoVideoId == null) {
final file = await local.file;
if (file == null) {
throw Exception('No file found for the video');
Expand Down

0 comments on commit a2dd962

Please sign in to comment.