Skip to content
This repository has been archived by the owner on May 3, 2021. It is now read-only.

Commit

Permalink
Fix DFImageRequestOptions description
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Mar 24, 2015
1 parent 76aeac0 commit 87e18ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DFImageManager/Source/Core/Support/DFImageRequestOptions.m
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ - (id)copyWithZone:(NSZone *)zone {
}

- (NSString *)description {
return [NSString stringWithFormat:@"<%@ %p> { priority = %i, network = %i, clip = %i, cache = %i, expires = %0.2f }", [self class], self, (int)_priority, _allowsNetworkAccess, _allowsClipping, (int)_memoryCachePolicy, _expirationAge];
return [NSString stringWithFormat:@"<%@ %p> { priority = %i, network = %i, clip = %i, cache = %i, expires = %0.2f }", [self class], self, (int)_priority, _allowsNetworkAccess, _allowsClipping, _memoryCachePolicy == DFImageRequestCachePolicyDefault ? 1 : 0, _expirationAge];
}

@end

0 comments on commit 87e18ca

Please sign in to comment.