Skip to content

Commit 51cbb34

Browse files
committed
Fix compilation error after upgrading to cocoa 1.2.53
1 parent d5195f6 commit 51cbb34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/Classes/codec/AblyFlutterReader.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ +(ARTTokenParams *)tokenParamsFromDictionary: (NSDictionary *) dictionary {
253253

254254
for (NSString *key in dictionary) {
255255
NSString *value = dictionary[key];
256-
ARTStringifiable *stringifiable = [[ARTStringifiable alloc] initWithString:value];
256+
ARTStringifiable *stringifiable = [ARTStringifiable withString:value];
257257
result[key] = stringifiable;
258258
}
259259

0 commit comments

Comments
 (0)