Fix static analysis warning

This commit is contained in:
Diego Waxemberg
2015-02-01 21:09:21 -05:00
committed by Cameron Gutman
parent 11c27baaf8
commit 1313429f65
3 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -41,7 +41,8 @@
retriever.app = app;
retriever.host = _host;
retriever.callback = _callback;
retriever.cache = useCache ? _imageCache : nil;
retriever.cache = _imageCache;
retriever.useCache = useCache;
[_opQueue addOperation:retriever];
}
}