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-12-01 09:02:25 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ecf90598c78a120d74af56529485676efd28c45d
ecf90598
1 parent
c5f0b017
Fix suggest parentheses issue
closes gh-97
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
Classes/ASIDownloadCache.m
Classes/ASIDownloadCache.m
View file @
ecf9059
...
...
@@ -357,7 +357,7 @@ static NSString *permanentCacheFolder = @"PermanentStore";
BOOL
isDirectory
=
NO
;
BOOL
exists
=
[[
NSFileManager
defaultManager
]
fileExistsAtPath
:
path
isDirectory
:
&
isDirectory
];
if
(
exists
&&
!
isDirectory
||
!
exists
)
{
if
(
!
exists
||
!
isDirectory
)
{
[[
self
accessLock
]
unlock
];
return
;
}
...
...
Please
register
or
login
to post a comment