Skip to content

Commit

Permalink
fix: various bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
swplange committed Dec 30, 2023
1 parent 5301bf8 commit 1e8d157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ app.get('/voucher', async (req, res) => {
voucher: voucher,
sid: uuidv4(),
showFooter: !process.env.SHOW_FOOTER || process.env.SHOW_FOOTER.toUpperCase() === 'TRUE',
allowPrinter: process.env.PRINT_VOUCHER && process.env.PRINT_VOUCHER.toUpperCase() === 'TRUE'
allowPrint: process.env.PRINT_VOUCHER && process.env.PRINT_VOUCHER.toUpperCase() === 'TRUE'
});
});
app.get('/vouchers', async (req, res) => {
Expand Down

0 comments on commit 1e8d157

Please sign in to comment.