mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 01:35:20 +00:00
fix requests_dir bug
This commit is contained in:
parent
d75d3fdf5b
commit
10740470cc
1 changed files with 11 additions and 10 deletions
|
@ -1241,9 +1241,10 @@ class Abstract_Wallet(object):
|
|||
out['status'] = self.get_request_status(addr)
|
||||
# check if bip70 file exists
|
||||
rdir = config.get('requests_dir')
|
||||
if rdir:
|
||||
key = out.get('id', addr)
|
||||
path = os.path.join(rdir, key + '.bip70')
|
||||
if rdir and os.path.exists(path):
|
||||
if os.path.exists(path):
|
||||
baseurl = 'file://' + rdir
|
||||
rewrite = config.get('url_rewrite')
|
||||
if rewrite:
|
||||
|
|
Loading…
Add table
Reference in a new issue