Fix cache load race condition bug

This commit is contained in:
Tanner Collin 2020-01-28 04:20:48 +00:00
parent 72f1043952
commit 02b73a8b14

View File

@ -24,7 +24,9 @@ class Article extends React.Component {
localForage.getItem(id) localForage.getItem(id)
.then( .then(
(value) => { (value) => {
this.setState({ story: value }); if (value) {
this.setState({ story: value });
}
} }
); );