Skip to content

Commit

Permalink
Fix zip filename typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-kl1 authored Aug 17, 2023
1 parent 525d0fb commit 6a49210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/Export/ExportToFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function __construct(
public function export(ExportEntityInterface $exportEntity): string
{
$fileName = $this->prepareFileName($exportEntity);
$archiveFileName = $fileName . 'zip';
$archiveFileName = $fileName . '.zip';
$data = $this->processorFactory->get($exportEntity->getEntityType())->execute($exportEntity->getEntityId(), []);

foreach ($this->resolveExportRendererCodes() as $rendererCode) {
Expand Down

0 comments on commit 6a49210

Please sign in to comment.