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