aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2021-12-18 02:16:55 +0100
committerLibravatar kytwb <kytwb@pm.me>2021-12-18 02:16:55 +0100
commit547d462243b26b3c1ee1dcf040f7d63081a1a4af (patch)
treed91463319ccf0ab906d1aa873244808df1e27df9 /src/containers
parentUpgrade electron-updater from 4.6.2 to 4.6.5 (diff)
downloadferdium-app-547d462243b26b3c1ee1dcf040f7d63081a1a4af.tar.gz
ferdium-app-547d462243b26b3c1ee1dcf040f7d63081a1a4af.tar.zst
ferdium-app-547d462243b26b3c1ee1dcf040f7d63081a1a4af.zip
Better error handling for autoUpdater
Diffstat (limited to 'src/containers')
-rw-r--r--src/containers/settings/EditSettingsScreen.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/containers/settings/EditSettingsScreen.js b/src/containers/settings/EditSettingsScreen.js
index ddf6876b9..3d215a0d7 100644
--- a/src/containers/settings/EditSettingsScreen.js
+++ b/src/containers/settings/EditSettingsScreen.js
@@ -727,6 +727,7 @@ class EditSettingsScreen extends Component {
727 isUpdateAvailable={updateStatus === updateStatusTypes.AVAILABLE} 727 isUpdateAvailable={updateStatus === updateStatusTypes.AVAILABLE}
728 noUpdateAvailable={updateStatus === updateStatusTypes.NOT_AVAILABLE} 728 noUpdateAvailable={updateStatus === updateStatusTypes.NOT_AVAILABLE}
729 updateIsReadyToInstall={updateStatus === updateStatusTypes.DOWNLOADED} 729 updateIsReadyToInstall={updateStatus === updateStatusTypes.DOWNLOADED}
730 updateFailed={updateStatus === updateStatusTypes.FAILED}
730 onSubmit={d => this.onSubmit(d)} 731 onSubmit={d => this.onSubmit(d)}
731 getCacheSize={() => app.cacheSize} 732 getCacheSize={() => app.cacheSize}
732 isClearingAllCache={isClearingAllCache} 733 isClearingAllCache={isClearingAllCache}