Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
ArceDanielShok committed Dec 20, 2024
1 parent 975586a commit dec0745
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "internxt-drive",
"version": "2.3.2-qa2",
"version": "2.3.2",
"author": "Internxt <[email protected]>",
"description": "Internxt Drive client UI",
"license": "AGPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "internxt-drive",
"version": "2.3.2-qa2",
"version": "2.3.2",
"description": "Internxt Drive client UI",
"main": "./dist/main/main.js",
"author": "Internxt <[email protected]>",
Expand Down
14 changes: 10 additions & 4 deletions src/apps/backups/Backups.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,17 @@ export class Backup {
);
} catch (error) {
Logger.error('Error uploading files', error);
}
this.backed += batch.length;
if (error instanceof DriveDesktopError) {
Logger.error('Error uploading files', {
cause: error.cause,
});
throw error;
}
this.backed += batch.length;

Logger.debug('[Backed]', this.backed);
BackupsIPCRenderer.send('backups.progress-update', this.backed);
Logger.debug('[Backed]', this.backed);
BackupsIPCRenderer.send('backups.progress-update', this.backed);
}
}
}

Expand Down

0 comments on commit dec0745

Please sign in to comment.