Fixed broken mime-type

ref #13
This commit is contained in:
Nicolai Ort 2021-02-08 17:52:04 +01:00
parent e1ec193a4f
commit 4187a8e820
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ export class PdfCreator {
includetext: true,
textxalign: 'center',
});
return `data:$image/png;base64,${barcode.toString('base64')}`;
return `data:image/png;base64,${barcode.toString('base64')}`;
}
/**