From 35c788fabc760c4b71ab43575ff9b4fbe7f553a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sun, 26 Apr 2020 19:13:23 +0200 Subject: [PATCH] Really generate a Code39 barcode if this is wished. --- src/Services/LabelSystem/BarcodeGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/LabelSystem/BarcodeGenerator.php b/src/Services/LabelSystem/BarcodeGenerator.php index 8d7d27d2..21f02ff8 100644 --- a/src/Services/LabelSystem/BarcodeGenerator.php +++ b/src/Services/LabelSystem/BarcodeGenerator.php @@ -45,7 +45,7 @@ class BarcodeGenerator $type = 'DATAMATRIX'; break; case 'code39': - $type = 'C93'; + $type = 'C39'; break; case 'code93': $type = 'C93';