changelog and bump

(cherry picked from commit a661f08d7b)
This commit is contained in:
Kukks 2022-08-26 10:01:44 +02:00
parent f67bd69ecc
commit 11ec72ce8c
No known key found for this signature in database
GPG Key ID: 8E5530D9D1C93097
3 changed files with 12 additions and 2 deletions

View File

@ -102,8 +102,9 @@ namespace BTCPayServer.Services.Labels
}
else if (uncoloredLabel is PayoutLabel payoutLabel)
{
coloredLabel.Tooltip = payoutLabel.PullPaymentPayouts.Count switch
coloredLabel.Tooltip = payoutLabel.PullPaymentPayouts?.Count switch
{
null => PayoutLabelText(),
0 => PayoutLabelText(),
1 => PayoutLabelText(payoutLabel.PullPaymentPayouts.First()),
_ =>

View File

@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.6.9</Version>
<Version>1.6.10</Version>
</PropertyGroup>
</Project>

View File

@ -1,4 +1,13 @@
# Changelog
## 1.6.10
### Bug fixes:
* Fix Wallet Transactions screen not loading in case of older payout labels (#4078) @Kukks
* Fix missing route hints for LNURL (#4077) @dennisreimann
* Fix API Docs url (#4061) @dennisreimann
* Fix Pay button logo and url (#4054) @dennisreimann
## 1.6.9
### Bug fixes: