Skip to content

Commit

Permalink
Merge pull request #11 from wuespace/fix/svg-generator
Browse files Browse the repository at this point in the history
Use lowercase ASN barcode type in barcode svg generator
  • Loading branch information
pklaschka authored Dec 12, 2024
2 parents cf5324a + d95b517 commit 1b4c24f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/http/barcode-svg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { getConfig } from "$common/config.ts";
*/
export function createBarcodeSVG(data: string, embedded = false): string {
return bwip.toSVG({
bcid: getConfig().ASN_BARCODE_TYPE, // Barcode type
bcid: getConfig().ASN_BARCODE_TYPE.toLowerCase(), // Barcode type
text: data, // Text to encode
scale: 3, // 3x scaling factor
height: 10, // Bar height, in millimeters
Expand Down

0 comments on commit 1b4c24f

Please sign in to comment.