forked from Cutlery/immich
fix(mobile): fix background upload regression on Android (#4139)
This commit is contained in:
parent
1a633f3fca
commit
2e0c7abd65
@ -220,7 +220,9 @@ class BackupService {
|
|||||||
final List<String> duplicatedAssetIds = [];
|
final List<String> duplicatedAssetIds = [];
|
||||||
|
|
||||||
// DON'T KNOW WHY BUT THIS HELPS BACKGROUND BACKUP TO WORK ON IOS
|
// DON'T KNOW WHY BUT THIS HELPS BACKGROUND BACKUP TO WORK ON IOS
|
||||||
await PhotoManager.requestPermissionExtend();
|
if (Platform.isIOS) {
|
||||||
|
await PhotoManager.requestPermissionExtend();
|
||||||
|
}
|
||||||
|
|
||||||
List<AssetEntity> assetsToUpload = sortAssets
|
List<AssetEntity> assetsToUpload = sortAssets
|
||||||
// Upload images before video assets
|
// Upload images before video assets
|
||||||
|
Loading…
x
Reference in New Issue
Block a user