Skip to content

Commit 459b471

Browse files
committed
(patch): removed bad await
1 parent 31252ad commit 459b471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/backup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ export class BackupManager {
339339
)
340340

341341
// Create && update backup record for this diff backup
342-
const [ backupSize, sizeError ] = await this._getTotalByteLengthOfBackup(fChanged)
342+
const [ backupSize, sizeError ] = this._getTotalByteLengthOfBackup(fChanged)
343343
if (sizeError) {
344344
throw new BackupException(`Failed to calculate backup size. Reason: ${sizeError.message}`)
345345
}

0 commit comments

Comments
 (0)