Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
jleandroperez committed Nov 30, 2017
2 parents bd9f742 + 396c888 commit 6855f5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Simperium/SPEnvironment.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#endif

// TODO: Update this automatically via a script that looks at current git tag
NSString* const SPLibraryVersion = @"0.8.19";
NSString* const SPLibraryVersion = @"0.8.20";

/// SSL Pinning
///
Expand Down
2 changes: 1 addition & 1 deletion Simperium/SPWebSocketChannel.m
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ - (void)handleIndexResponse:(NSString *)responseString bucket:(SPBucket *)bucket
if ([current isKindOfClass:[NSNumber class]]) {
current = [NSString stringWithFormat:@"%ld", (long)[current integerValue]];
}
self.pendingLastChangeSignature = [current length] > 0 ? [NSString stringWithFormat:@"%@", current] : nil;
self.pendingLastChangeSignature = [current length] > 0 ? [NSString stringWithFormat:@"%@", current] : @"";
self.nextMark = responseDict[@"mark"];

// Remember all the retrieved data in case there's more to get
Expand Down

0 comments on commit 6855f5a

Please sign in to comment.