We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f44234 commit ce4d738Copy full SHA for ce4d738
1 file changed
src/libs/actions/Export.ts
@@ -64,7 +64,7 @@ function clearStaleExportDownloads() {
64
}
65
for (const key of Object.keys(exportDownloads)) {
66
const exportDownload = exportDownloads[key];
67
- if (!exportDownload || exportDownload.state === CONST.EXPORT_DOWNLOAD.STATE.PREPARING) {
+ if (!exportDownload || exportDownload.state === CONST.EXPORT_DOWNLOAD.STATE.PREPARING || exportDownload.state === CONST.EXPORT_DOWNLOAD.STATE.READY) {
68
continue;
69
70
const exportID = key.replace(ONYXKEYS.COLLECTION.EXPORT_DOWNLOAD, '');
0 commit comments