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
2010-06-23 14:09:33 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
714cf825bc4d4753750cd89e67a0fb38fa5aeff5
714cf825
1 parent
a38445a2
Fix mac builds
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
Classes/ASIHTTPRequest.m
Mac.xcodeproj/project.pbxproj
Classes/ASIHTTPRequest.m
View file @
714cf82
...
...
@@ -24,7 +24,7 @@
// Automatically set on build
NSString
*
ASIHTTPRequestVersion
=
@"v1.6.2-6
2
2010-06-23"
;
NSString
*
ASIHTTPRequestVersion
=
@"v1.6.2-6
3
2010-06-23"
;
NSString
*
const
NetworkRequestErrorDomain
=
@"ASIHTTPRequestErrorDomain"
;
...
...
@@ -2828,10 +2828,10 @@ static NSOperationQueue *sharedQueue = nil;
CFReadStreamSetClient
((
CFReadStreamRef
)[
self
readStream
],
kCFStreamEventNone
,
NULL
,
NULL
);
[
connectionsLock
lock
];
if
(
shouldUpdateNetworkActivityIndicator
&&
[
self
readStreamIsScheduled
])
{
if
([
self
readStreamIsScheduled
])
{
runningRequestCount
--
;
#if TARGET_OS_IPHONE
if
(
runningRequestCount
==
0
)
{
if
(
shouldUpdateNetworkActivityIndicator
&&
runningRequestCount
==
0
)
{
[[
UIApplication
sharedApplication
]
setNetworkActivityIndicatorVisible
:
NO
];
}
#endif
...
...
Mac.xcodeproj/project.pbxproj
View file @
714cf82
This diff was suppressed by a .gitattributes entry.
Please
register
or
login
to post a comment