mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
Add a space between the ? and : in ternarys
This commit is contained in:
@@ -700,7 +700,7 @@ typedef void(^ASMultiplexImageLoadCompletionBlock)(UIImage *image, id imageIdent
|
||||
options.synchronous = YES;
|
||||
}
|
||||
|
||||
PHImageManager *imageManager = strongSelf.imageManager ?: PHImageManager.defaultManager;
|
||||
PHImageManager *imageManager = strongSelf.imageManager ? : PHImageManager.defaultManager;
|
||||
[imageManager requestImageForAsset:imageAsset targetSize:request.targetSize contentMode:request.contentMode options:options resultHandler:^(UIImage *image, NSDictionary *info) {
|
||||
NSError *error = info[PHImageErrorKey];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user