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",
|
||||
"paid" or "processing" => "Processing",
|
||||
"complete" or "confirmed" => "Settled",
|
||||
"complete" or "confirmed" or "settled" => "Settled",
|
||||
"expired" => "Expired",
|
||||
"invalid" => "Invalid",
|
||||
_ => null
|
||||
|
|
Loading…
Add table
Reference in a new issue