OptionalFileList - get list of not downloaded files

We can use API command optionalFileList with parameter filter=not_downloaded to get list of all not downloaded files
This commit is contained in:
krzotr 2019-04-03 17:01:16 +02:00 committed by Krzysztof Otręba
parent ba6a75f8d7
commit 80f3f9d511
1 changed files with 5 additions and 1 deletions

View File

@ -132,8 +132,12 @@ class UiWebsocketPlugin(object):
wheres_raw = []
if "bigfile" in filter:
wheres["size >"] = 1024 * 1024 * 10
if "downloaded" in filter:
if "not_downloaded" in filter:
wheres["is_downloaded"] = 0
elif "downloaded" in filter:
wheres_raw.append("(is_downloaded = 1 OR is_pinned = 1)")
if "pinned" in filter:
wheres["is_pinned"] = 1