diff --git a/BTCPayServer/Views/UIInvoice/InvoiceReceiptPrint.cshtml b/BTCPayServer/Views/UIInvoice/InvoiceReceiptPrint.cshtml index 4f8ecf38a..0f96ed65b 100644 --- a/BTCPayServer/Views/UIInvoice/InvoiceReceiptPrint.cshtml +++ b/BTCPayServer/Views/UIInvoice/InvoiceReceiptPrint.cshtml @@ -174,7 +174,19 @@ { Destination - @payment.Destination + + @if (payment.Destination.Length > 69) + { + + @payment.Destination.Substring(0, 30) + ... + @payment.Destination.Substring(payment.Destination.Length-30, 30) + + } else + { + @payment.Destination + } + } @if (!string.IsNullOrEmpty(payment.PaymentProof))