mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
fix plugin initialization with load_wallet
This commit is contained in:
parent
117c563182
commit
397f07ca82
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ def run_hook(name, *args):
|
|||
results = []
|
||||
f_list = hooks.get(name,[])
|
||||
for p, f in f_list:
|
||||
if not p.is_enabled():
|
||||
if name != 'load_wallet' and not p.is_enabled():
|
||||
continue
|
||||
try:
|
||||
r = f(*args)
|
||||
|
|
Loading…
Add table
Reference in a new issue