Skip to content

Commit 65d68f8

Browse files
committed
refactor: zip download progress notification
1 parent 130b63b commit 65d68f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/web/src/javascripts/Controllers/FilesController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ export class FilesController extends AbstractViewController<FilesControllerEvent
781781
.downloadFile(file, async (bytesChunk, progress) => {
782782
await writer.write(bytesChunk)
783783
updateToast(toast, {
784-
message: `Downloading file "${truncateString(file.name, 20)}"`,
784+
message: `Downloading "${truncateString(file.name, 25)}"`,
785785
progress: Math.floor(progress.percentComplete),
786786
})
787787
})

0 commit comments

Comments
 (0)