Skip to content

Commit

Permalink
Fix video not loading from iCloud (#1515)
Browse files Browse the repository at this point in the history
Fix the video not loading/downloading from iCloud as suggested by @anhkieet
  • Loading branch information
luco authored Jan 21, 2021
1 parent 95b9ba7 commit e3b12e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ios/src/ImageCropPicker.m
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,7 @@ - (void) getVideoAsset:(PHAsset*)forAsset completion:(void (^)(NSDictionary* ima
PHVideoRequestOptions *options = [[PHVideoRequestOptions alloc] init];
options.version = PHVideoRequestOptionsVersionOriginal;
options.networkAccessAllowed = YES;
options.deliveryMode = PHVideoRequestOptionsDeliveryModeHighQualityFormat;

[manager
requestAVAssetForVideo:forAsset
Expand Down

0 comments on commit e3b12e9

Please sign in to comment.