mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
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 = [];
|
||||
|
||||
// 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
|
||||
// Upload images before video assets
|
||||
|
Loading…
Reference in New Issue
Block a user