forked from LBRYCommunity/lbry-sdk
change default full_status to True in _get_lbry_files
This commit is contained in:
parent
2523afa266
commit
62a8789393
1 changed files with 1 additions and 1 deletions
|
@ -917,7 +917,7 @@ class Daemon(AuthJSONRPCServer):
|
|||
defer.returnValue(lbry_file)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def _get_lbry_files(self, return_json=False, full_status=False, **kwargs):
|
||||
def _get_lbry_files(self, return_json=False, full_status=True, **kwargs):
|
||||
lbry_files = list(self.lbry_file_manager.lbry_files)
|
||||
if kwargs:
|
||||
for search_type, value in iter_lbry_file_search_values(kwargs):
|
||||
|
|
Loading…
Reference in a new issue