From 5ade3b99b17df7aedcd02581534408c18a98a7c8 Mon Sep 17 00:00:00 2001 From: rockstardev <5191402+rockstardev@users.noreply.github.com> Date: Fri, 17 Oct 2025 13:30:18 -0500 Subject: [PATCH] Providing full status for review in POS recent transactions --- .../Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs b/BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs index 4d6cfd472..d50d32471 100644 --- a/BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs +++ b/BTCPayServer/Plugins/PointOfSale/Controllers/UIPointOfSaleController.cs @@ -520,7 +520,7 @@ namespace BTCPayServer.Plugins.PointOfSale.Controllers ["id"] = i.Id, ["date"] = i.InvoiceTime, ["price"] = _displayFormatter.Currency(i.Price, i.Currency, DisplayFormatter.CurrencyFormat.Symbol), - ["status"] = i.GetInvoiceState().Status.ToString(), + ["status"] = i.GetInvoiceState().ToString(), ["url"] = Url.Action(nameof(UIInvoiceController.Invoice), "UIInvoice", new { invoiceId = i.Id }) }); return Json(recent);