Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
asi-http-request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Darren Clarke
2010-01-25 01:41:05 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
Ben Copsey
2010-01-25 02:04:43 +0800
Commit
1fce43664e0c7c0cd040939d1953090679961322
1fce4366
1 parent
35531726
Fix for crash caused by swapped NSLog arguments when debugging redirects
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
Classes/ASIHTTPRequest.m
Classes/ASIHTTPRequest.m
View file @
1fce436
...
...
@@ -1731,7 +1731,7 @@ static BOOL isiPhoneOS2;
[
self
setRequestCookies
:[
NSMutableArray
array
]];
#if DEBUG_REQUEST_STATUS
NSLog
(
@"Request will redirect (code: %hi): %@"
,
self
,[
self
responseStatusCode
]
);
NSLog
(
@"Request will redirect (code: %hi): %@"
,
[
self
responseStatusCode
],
self
);
#endif
}
...
...
Please
register
or
login
to post a comment