Skip to content

Commit

Permalink
Fix filename calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
ipf authored Oct 7, 2021
1 parent c80ec30 commit 12efb7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Service/ImageService.php
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,6 @@ private function getFilename(Document $document, Image $image): string
}
}

return $image->getIdentifier().$image->getFormat();
return $image->getIdentifier().'.'.$image->getFormat();
}
}

0 comments on commit 12efb7b

Please sign in to comment.