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
Ben Copsey
2011-08-20 04:49:15 -0700
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
90e5fbce17d66e5341f105c1eb26133a01686838
90e5fbce
2 parents
0c83e975
1a9e094e
Merge pull request #236 from gamma/master
CopyWithZone did not copy authenticationScheme
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
.gitignore
Classes/ASIHTTPRequest.m
.gitignore
View file @
90e5fbc
...
...
@@ -10,3 +10,4 @@ profile
*.pbxuser
*.mode1v3
External/GHUnit/*
.svn
\ No newline at end of file
...
...
Classes/ASIHTTPRequest.m
View file @
90e5fbc
...
...
@@ -4080,6 +4080,7 @@ static NSOperationQueue *sharedQueue = nil;
[
newRequest
setShouldUseRFC2616RedirectBehaviour
:[
self
shouldUseRFC2616RedirectBehaviour
]];
[
newRequest
setShouldAttemptPersistentConnection
:[
self
shouldAttemptPersistentConnection
]];
[
newRequest
setPersistentConnectionTimeoutSeconds
:[
self
persistentConnectionTimeoutSeconds
]];
[
newRequest
setAuthenticationScheme
:[
self
authenticationScheme
]];
return
newRequest
;
}
...
...
Please
register
or
login
to post a comment