Skip to content

Commit

Permalink
Fixed crash due to the referrer dictionary being assign
Browse files Browse the repository at this point in the history
`assign` is a synonym for `unsafe_unretained` in ARC - this is bad!
  • Loading branch information
AriX committed Sep 26, 2016
1 parent a971f13 commit f4b5b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Analytics/Classes/Internal/SEGSegmentIntegration.m
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ @interface SEGSegmentIntegration ()
@property (nonatomic, strong) NSMutableDictionary *traits;
@property (nonatomic, assign) SEGAnalytics *analytics;
@property (nonatomic, assign) SEGAnalyticsConfiguration *configuration;
@property (nonatomic, assign) NSDictionary *referrer;
@property (nonatomic, copy) NSDictionary *referrer;
@property (nonatomic, copy) NSString *userId;
@property (nonatomic, strong) NSURL *apiURL;
@property (nonatomic, strong) SEGHTTPClient *httpClient;
Expand Down

0 comments on commit f4b5b8a

Please sign in to comment.