Skip to content

Commit d776d21

Browse files
authored
Merge pull request #967 from BranchMetrics/SDK-450-rare-serialization-issue
SDK-450 rare serialization issue
2 parents 6ac2733 + 94d1ebe commit d776d21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Branch-SDK/Branch-SDK/BNCCommerceEvent.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ - (instancetype)initWithCoder:(NSCoder *)decoder {
605605
self = [super initWithCoder:decoder];
606606
if (!self) return self;
607607
self.commerceDictionary = [decoder decodeObjectOfClass:NSDictionary.class forKey:@"commerceDictionary"];
608-
self.metadata = [decoder decodeObjectOfClass:NSDictionary.class forKey:@"metaData"];
608+
self.metadata = [decoder decodeObjectOfClass:NSDictionary.class forKey:@"metadata"];
609609
return self;
610610
}
611611

Branch-SDK/Branch-SDK/Branch.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1931,7 +1931,7 @@ - (void)processNextQueueItem {
19311931

19321932
}
19331933

1934-
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
1934+
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
19351935
dispatch_async(queue, ^ {
19361936
[req makeRequest:self.serverInterface key:self.class.branchKey callback:
19371937
^(BNCServerResponse* response, NSError* error) {

0 commit comments

Comments
 (0)