mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 06:31:58 +00:00
fix(mobile): live photos playback (#14731)
This commit is contained in:
parent
c7b44bef81
commit
a2dd9622a3
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue