Skip to content

Commit

Permalink
Merge pull request #438 from stuartwoodman/AUS-4061-Fix
Browse files Browse the repository at this point in the history
AUS-4061-Fix
  • Loading branch information
vjf authored Sep 2, 2024
2 parents cf4d54a + f0d37be commit b4e814a
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 b4e814a

Please sign in to comment.