Skip to content

Commit

Permalink
Fix issue with not all zipped data sending response information.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwoodman committed Aug 30, 2024
1 parent 74bd07d commit f0d37be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ export class DownloadPanelComponent implements OnInit {
alert('No content could be found for the specified area. Please adjust the download bounds.');
return;
}
const blob = new Blob([value.body], { type: 'application/zip' });
const blob = new Blob([value.body ? value.body : value], { type: 'application/zip' });
saveAs(blob, 'download.zip');
}, err => {
this.downloadStarted = false;
Expand Down

0 comments on commit f0d37be

Please sign in to comment.