mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix(mobile): fix background upload regression on Android (#4139)
This commit is contained in:
parent
1a633f3fca
commit
2e0c7abd65
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue