diff --git a/BTCPayServer/DerivationSchemeSettings.cs b/BTCPayServer/DerivationSchemeSettings.cs index fc7a67104..b402f6072 100644 --- a/BTCPayServer/DerivationSchemeSettings.cs +++ b/BTCPayServer/DerivationSchemeSettings.cs @@ -131,8 +131,8 @@ namespace BTCPayServer } public string ToPrettyString() { - return string.IsNullOrEmpty(Label) ? Label : - String.IsNullOrEmpty(AccountOriginal) ? AccountOriginal : + return !string.IsNullOrEmpty(Label) ? Label : + !String.IsNullOrEmpty(AccountOriginal) ? AccountOriginal : ToString(); } }