Browse Source

Update __init__.py

fee_issues
Arc 5 years ago
committed by GitHub
parent
commit
15de047bb8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      lnbits/__init__.py

5
lnbits/__init__.py

@ -261,9 +261,12 @@ def wallet():
""",
(wallet_id,),
)
user_ext = db.fetchall("SELECT extension FROM extensions WHERE user = ? AND active = 1", (usr,))
user_ext = [v[0] for v in user_ext]
return render_template(
"wallet.html", user_wallets=user_wallets, wallet=wallet, user=usr, transactions=transactions,
"wallet.html", user_wallets=user_wallets, wallet=wallet, user=usr, transactions=transactions, user_ext=user_ext
)

Loading…
Cancel
Save