mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
Fix DerivationSchemeSettings.ToPrettyString()
This commit is contained in:
parent
d5579ef2b5
commit
0b6dfe0fd3
@ -131,8 +131,8 @@ namespace BTCPayServer
|
|||||||
}
|
}
|
||||||
public string ToPrettyString()
|
public string ToPrettyString()
|
||||||
{
|
{
|
||||||
return string.IsNullOrEmpty(Label) ? Label :
|
return !string.IsNullOrEmpty(Label) ? Label :
|
||||||
String.IsNullOrEmpty(AccountOriginal) ? AccountOriginal :
|
!String.IsNullOrEmpty(AccountOriginal) ? AccountOriginal :
|
||||||
ToString();
|
ToString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user