We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 232de7e commit 7f2e56dCopy full SHA for 7f2e56d
ios/RCTWKWebView/RCTWKWebView.m
@@ -308,7 +308,7 @@ - (void)stopLoading
308
}
309
310
- (NSString *) cookieDescription:(NSHTTPCookie *)cookie {
311
-
+
312
NSMutableString *cDesc = [[NSMutableString alloc] init];
313
[cDesc appendFormat:@"%@=%@;",
314
[[cookie name] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding],
@@ -319,8 +319,8 @@ - (NSString *) cookieDescription:(NSHTTPCookie *)cookie {
319
[cDesc appendFormat:@"path=%@;", [cookie path]];
320
if (cookie.expiresDate != nil)
321
[cDesc appendFormat:@"expiresDate=%@;", [cookie expiresDate]];
322
323
324
return cDesc;
325
326
0 commit comments