Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 2474535

Browse files
authored
chore: comment out hacky latest download state update that break the downloading flow (#692)
1 parent 9f7e8de commit 2474535

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cortex-js/src/download-manager/download-manager.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ export class DownloadManagerService {
2121
private readonly eventEmitter: EventEmitter2,
2222
) {
2323
// start emitting download state each 500ms
24-
setInterval(() => {
25-
this.eventEmitter.emit('download.event', this.allDownloadStates);
26-
}, 500);
24+
// setInterval(() => {
25+
// this.eventEmitter.emit('download.event', this.allDownloadStates);
26+
// }, 500);
2727
}
2828

2929
async abortDownload(downloadId: string) {

0 commit comments

Comments
 (0)