#32: Don't display network error message when check for UI updates fails

This commit is contained in:
2019-08-13 13:01:25 -05:00
parent a03652d93b
commit c6ce18251a

View File

@@ -38,9 +38,8 @@ export const detectUIUpgrade = () => {
} else { } else {
dispatch(clearUIUpgrade()); dispatch(clearUIUpgrade());
} }
}).catch(error => { }).catch(() => {
dispatch(clearUIUpgrade()); dispatch(clearUIUpgrade());
dispatch(notifyError(error));
}); });
}; };
}; };