diff --git a/BTCPayServer/Views/UIInvoice/InvoiceReceiptPrint.cshtml b/BTCPayServer/Views/UIInvoice/InvoiceReceiptPrint.cshtml index 3d1c4a6ab..504f220fc 100644 --- a/BTCPayServer/Views/UIInvoice/InvoiceReceiptPrint.cshtml +++ b/BTCPayServer/Views/UIInvoice/InvoiceReceiptPrint.cshtml @@ -178,9 +178,9 @@ @if (payment.Destination.Length > 69) { - @payment.Destination[..30] + @payment.Destination[..19] ... - @payment.Destination.Substring(payment.Destination.Length - 30, 30) + @payment.Destination.Substring(payment.Destination.Length - 20, 20) } else