Fix voucher screen crash

pull/57/head
Flashfyre 2024-04-07 20:12:45 -04:00
parent 89de4b511b
commit 737499b1e9
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ export default class VouchersUiHandler extends MessageUiHandler {
this.updateVoucherIcons();
this.showVoucher(vouchers[Object.keys(vouchers)[this.cursor + this.scrollCursor * itemCols]]);
this.showVoucher(vouchers[Object.keys(vouchers)[Math.min(this.cursor + this.scrollCursor * itemCols, Object.values(vouchers).length - 1)]]);
return true;
}