Minor refactoring

pull/417/head
Niels Andriesse 4 years ago
parent 74ba177250
commit 61dd768e5c

@ -144,14 +144,14 @@ NS_ASSUME_NONNULL_BEGIN
return;
}
BOOL isAllAttachmentDownloaded = YES;
BOOL areAllAttachmentsDownloaded = YES;
for (NSString *attachmentId in self.attachmentIds) {
TSAttachment *attachment = [TSAttachment fetchObjectWithUniqueID:attachmentId transaction:transaction];
isAllAttachmentDownloaded = isAllAttachmentDownloaded && attachment.isDownloaded;
if (!isAllAttachmentDownloaded) break;
areAllAttachmentsDownloaded = areAllAttachmentsDownloaded && attachment.isDownloaded;
if (!areAllAttachmentsDownloaded) break;
}
if (!isAllAttachmentDownloaded) {
if (!areAllAttachmentsDownloaded) {
return;
}

Loading…
Cancel
Save