diff --git a/Core/PARStore.m b/Core/PARStore.m index 2523a3e..764b99d 100644 --- a/Core/PARStore.m +++ b/Core/PARStore.m @@ -2600,7 +2600,7 @@ - (PARChange *)changeFromLogDictionary:(NSDictionary *)logDictionary { NSString *key = logDictionary[KeyAttributeName]; NSData *blob = logDictionary[BlobAttributeName]; id propertyList = (blob.length > 0 ? [self propertyListFromData:blob error:NULL] : nil); - if (timestamp != nil && key != nil && blob != nil) + if (timestamp != nil && key != nil) { PARChange *change = [PARChange changeWithTimestamp:timestamp parentTimestamp:parentTimestamp key:key propertyList:propertyList]; return change;