mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
Fix missing normalization of Settled invoice status (#6097)
Addition to #5982, which fixes lookups for invoices with status `Settled` (e.g. for Sales tiles on the Dashboard).
This commit is contained in:
parent
a0988c250d
commit
a88b39e50d
1 changed files with 1 additions and 1 deletions
|
@ -806,7 +806,7 @@ retry:
|
||||||
{
|
{
|
||||||
"new" => "New",
|
"new" => "New",
|
||||||
"paid" or "processing" => "Processing",
|
"paid" or "processing" => "Processing",
|
||||||
"complete" or "confirmed" => "Settled",
|
"complete" or "confirmed" or "settled" => "Settled",
|
||||||
"expired" => "Expired",
|
"expired" => "Expired",
|
||||||
"invalid" => "Invalid",
|
"invalid" => "Invalid",
|
||||||
_ => null
|
_ => null
|
||||||
|
|
Loading…
Add table
Reference in a new issue