RequestManager make requests abortable - Fix missed usages (#318)

This commit is contained in:
schroda
2023-05-23 13:54:14 +02:00
committed by GitHub
parent c32cb53592
commit 606ee9de2d
4 changed files with 8 additions and 8 deletions

View File

@@ -46,7 +46,7 @@ function UpdateChecker({ handleFinishedUpdate }: IUpdateCheckerProps) {
try {
setLoading(true);
setProgress(0);
await requestManager.startGlobalUpdate();
await requestManager.startGlobalUpdate().response;
} catch (e) {
makeToast(t('global.error.label.update_failed'), 'error');
setLoading(false);