add full_path to lbry_file
This commit is contained in:
parent
c56b3e75ea
commit
16ef259ae1
1 changed files with 4 additions and 1 deletions
|
@ -1218,7 +1218,9 @@ class LBRYDaemon(jsonrpc.JSONRPC):
|
|||
d = f.status()
|
||||
d.addCallback(_get_file_status)
|
||||
d.addCallback(lambda message: {'completed': f.completed, 'file_name': f.file_name,
|
||||
'download_directory': f.download_directory,'key': key,
|
||||
'download_directory': f.download_directory,
|
||||
'full_path': os.path.join(f.download_directory, f.file_name),
|
||||
'key': key,
|
||||
'points_paid': f.points_paid, 'stopped': f.stopped,
|
||||
'stream_hash': f.stream_hash,
|
||||
'stream_name': f.stream_name,
|
||||
|
@ -1231,6 +1233,7 @@ class LBRYDaemon(jsonrpc.JSONRPC):
|
|||
else:
|
||||
d = defer.succeed({'completed': f.completed, 'file_name': f.file_name, 'key': key,
|
||||
'download_directory': f.download_directory,
|
||||
'full_path': os.path.join(f.download_directory, f.file_name),
|
||||
'points_paid': f.points_paid, 'stopped': f.stopped, 'stream_hash': f.stream_hash,
|
||||
'stream_name': f.stream_name, 'suggested_file_name': f.suggested_file_name,
|
||||
'upload_allowed': f.upload_allowed, 'sd_hash': f.sd_hash, 'total_bytes': size,
|
||||
|
|
Loading…
Reference in a new issue