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-15 18:01:55 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e5a0ed8baa21d335b822064abc6ab94f71b7c4be
e5a0ed8b
1 parent
9de7aa6b
Fix crasher
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
Classes/ASIHTTPRequest.m
Classes/ASIHTTPRequest.m
View file @
e5a0ed8
...
...
@@ -23,7 +23,7 @@
// Automatically set on build
NSString
*
ASIHTTPRequestVersion
=
@"v1.6.2-1
5
2010-06-15"
;
NSString
*
ASIHTTPRequestVersion
=
@"v1.6.2-1
6
2010-06-15"
;
NSString
*
const
NetworkRequestErrorDomain
=
@"ASIHTTPRequestErrorDomain"
;
...
...
@@ -2600,9 +2600,10 @@ static BOOL isiPhoneOS2;
-
(
void
)
markAsFinished
{
[[
self
retain
]
autorelease
];
[
self
willChangeValueForKey
:
@"isFinished"
];
[
self
didChangeValueForKey
:
@"isFinished"
];
[
self
setInProgress
:
NO
];
[
self
didChangeValueForKey
:
@"isFinished"
];
CFRunLoopStop
(
CFRunLoopGetCurrent
());
}
...
...
Please
register
or
login
to post a comment