mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
fix(mobile): streamline error handling for live photo saving (#27337)
This commit is contained in:
@@ -109,7 +109,7 @@ class DownloadService {
|
|||||||
return result != null;
|
return result != null;
|
||||||
} on PlatformException catch (error, stack) {
|
} on PlatformException catch (error, stack) {
|
||||||
// Handle saving MotionPhotos on iOS
|
// Handle saving MotionPhotos on iOS
|
||||||
if (error.code == 'PHPhotosErrorDomain (-1)') {
|
if (error.code.startsWith('PHPhotosErrorDomain')) {
|
||||||
final result = await _fileMediaRepository.saveImageWithFile(imageFilePath, title: task.filename);
|
final result = await _fileMediaRepository.saveImageWithFile(imageFilePath, title: task.filename);
|
||||||
return result != null;
|
return result != null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user