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 = [];
|
||||
|
||||
// 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 a new issue