Commit 1b437c25 by Rune Madsen

Update to copy

parent 1608ac2f
...@@ -241,7 +241,7 @@ ...@@ -241,7 +241,7 @@
/** /**
* An optional note attached to the order * An optional note attached to the order
*/ */
@property (nonatomic, strong) NSString *note; @property (nonatomic, copy) NSString *note;
/** /**
* The BUYOrder for a completed checkout * The BUYOrder for a completed checkout
......
...@@ -160,7 +160,7 @@ ...@@ -160,7 +160,7 @@
self.updatedAtDate = [dateFormatter dateFromString:dictionary[@"updated_at"]]; self.updatedAtDate = [dateFormatter dateFromString:dictionary[@"updated_at"]];
self.creditCard = [BUYMaskedCreditCard convertObject:dictionary[@"credit_card"]]; self.creditCard = [BUYMaskedCreditCard convertObject:dictionary[@"credit_card"]];
self.customerId = [dictionary[@"customer_id"] copy]; self.customerId = [dictionary[@"customer_id"] copy];
self.note = dictionary[@"note"]; self.note = [dictionary[@"note"] copy];
self.privacyPolicyURL = [NSURL buy_urlWithString:dictionary[@"privacy_policy_url"]]; self.privacyPolicyURL = [NSURL buy_urlWithString:dictionary[@"privacy_policy_url"]];
self.refundPolicyURL = [NSURL buy_urlWithString:dictionary[@"refund_policy_url"]]; self.refundPolicyURL = [NSURL buy_urlWithString:dictionary[@"refund_policy_url"]];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment