Skip to content

Commit

Permalink
Do not print link expired message if status is ABORTED
Browse files Browse the repository at this point in the history
  • Loading branch information
saroshaga committed May 9, 2024
1 parent cabbf65 commit 6f2c23c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/media-import/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ Downloading errors details from ${ fileErrorsUrl }...
// Errors were observed and are present in the dto
// Fall back to exporting errors to local file
await printFailureDetails( fileErrors, results );
} else {
} else if ( 'ABORTED' !== overallStatus ) {
// Errors are not present in the dto
// And file error details report link is not available
// do not print this message if the import was aborted
Expand Down

0 comments on commit 6f2c23c

Please sign in to comment.