diff --git a/src/client/web/src/components/state_updater.ts b/src/client/web/src/components/state_updater.ts index 4fe5ff8..820b4f7 100644 --- a/src/client/web/src/components/state_updater.ts +++ b/src/client/web/src/components/state_updater.ts @@ -423,11 +423,12 @@ export class Updater { const statuses = await Promise.all([ this.refreshUploadings(), this.listSharings(), - this.initUploads(), ]); if (statuses.join("") !== "") { return statuses.join(";"); } + + this.initUploads(); return ""; };