Skip to content

Commit

Permalink
Fixed pdf size calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaaj committed May 8, 2023
1 parent af8fc58 commit 50156b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Utils/PdfDownloader.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ private function getSize() {
return 'a3';
break;
case $length < 13:
return 'a2'
return 'a2';
break;
default:
return 'a1';
break;
Expand Down

0 comments on commit 50156b3

Please sign in to comment.