Skip to content

Commit

Permalink
[bug fix] LSP info check
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Apr 20, 2024
1 parent 1291ac5 commit ea7229f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion views/Wallet/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,8 @@ export default class Wallet extends React.Component<WalletProps, WalletState> {
if (BackendUtils.supportsLSPs()) {
if (
SettingsStore.settings.enableLSP &&
!this.props.NodeInfoStore.lspNotConfigured
(implementation !== 'lnd' ||
!this.props.NodeInfoStore.lspNotConfigured)
) {
await LSPStore.getLSPInfo();
}
Expand Down

0 comments on commit ea7229f

Please sign in to comment.