mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-26 03:20:50 +02:00
Bug Fix - Failed to send photos which are not stored on the local device
and must be downloaded from iCloud. #1654
This commit is contained in:
@@ -3633,10 +3633,11 @@ typedef void (^blockSettingsViewController_onReadyToDestroy)();
|
||||
}
|
||||
}
|
||||
|
||||
- (void)mediaPickerController:(MediaPickerViewController *)mediaPickerController didSelectImage:(UIImage*)image withURL:(NSURL *)imageURL
|
||||
- (void)mediaPickerController:(MediaPickerViewController *)mediaPickerController didSelectImage:(NSData*)imageData withMimeType:(NSString *)mimetype isPhotoLibraryAsset:(BOOL)isPhotoLibraryAsset
|
||||
{
|
||||
[self dismissMediaPicker];
|
||||
newAvatarImage = image;
|
||||
|
||||
newAvatarImage = [UIImage imageWithData:imageData];
|
||||
|
||||
[self.tableView reloadData];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user