From f595d823b6f2e5648098603a5e158c0345fda8eb Mon Sep 17 00:00:00 2001 From: Umar Bolatov Date: Mon, 18 May 2020 12:51:58 -0700 Subject: [PATCH] Decode item description on POS app page (#1578) fix #938 --- BTCPayServer/Views/AppsPublic/ViewPointOfSale.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Views/AppsPublic/ViewPointOfSale.cshtml b/BTCPayServer/Views/AppsPublic/ViewPointOfSale.cshtml index 5e424f936..11ee61421 100644 --- a/BTCPayServer/Views/AppsPublic/ViewPointOfSale.cshtml +++ b/BTCPayServer/Views/AppsPublic/ViewPointOfSale.cshtml @@ -420,7 +420,7 @@
@item.Title
@if (!String.IsNullOrWhiteSpace(item.Description)) { -

@item.Description

+

@System.Net.WebUtility.HtmlDecode(item.Description)

}