We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b3f4a commit 4a0da3eCopy full SHA for 4a0da3e
image.js
@@ -28,7 +28,7 @@ class CacheableImage extends React.Component {
28
};
29
30
componentWillReceiveProps(nextProps) {
31
- if (nextProps.source != this.props.source || nextProps.networkAvailable != this.state.networkAvailable) {
+ if (nextProps.source != this.props.source || nextProps.networkAvailable != this.networkAvailable) {
32
this.networkAvailable = nextProps.networkAvailable;
33
this._processSource(nextProps.source);
34
}
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-native-cacheable-image",
3
- "version": "1.5.0",
+ "version": "1.5.1",
4
"description": "An Image component for React Native that will cache itself to disk",
5
"main": "image.js",
6
"scripts": {
0 commit comments