Skip to content

Commit

Permalink
Update ios/Classes/codec/AblyFlutterWriter.m
Browse files Browse the repository at this point in the history
[code consistency] remove space for ObjC arguments

#13 (comment)

Co-authored-by: Quintin <quintin@ably.io>
  • Loading branch information
tiholic and Quintin committed Jul 6, 2020
1 parent ee7b840 commit 77d3090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Classes/codec/AblyFlutterWriter.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ @implementation AblyFlutterWriter
- (void)writeValue:(id)value {
if([value isKindOfClass:[ARTErrorInfo class]]){
[self writeByte:errorInfoCodecType];
[self writeValue: [self encodeErrorInfo: value]];
[self writeValue:[self encodeErrorInfo: value]];
return;
}else if([value isKindOfClass:[ARTConnectionStateChange class]]){
[self writeByte:connectionStateChangeCodecType];
Expand Down

0 comments on commit 77d3090

Please sign in to comment.