Skip to content

Commit

Permalink
Fix errors caused by change of the signature and not applying it to t…
Browse files Browse the repository at this point in the history
…he function call
  • Loading branch information
ariskataoka committed May 9, 2024
1 parent a7eab97 commit 60c5594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/media-import/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,11 +377,11 @@ Downloading errors details from ${ failureDetailsUrl }...
if ( fileErrors.length > 0 ) {
// Errors were observed and are present in the dto
// Fall back to exporting errors to local file
await exportLocallyOutput( fileErrors, results );
await printFailureDetails( fileErrors, results );
} else {
// Errors are not present in the dto
// And file error details report link is not available
linkExpiredOutput( results );
printFileErrorsReportLinkExpiredError( results );
}
}

Expand Down

0 comments on commit 60c5594

Please sign in to comment.