Fixed a bug in the minSize function, was backwards so it never returned results when media files existed.

This commit is contained in:
echel0n 2014-04-22 21:26:44 -07:00
commit 817f310169
4 changed files with 10 additions and 17 deletions

View file

@ -328,8 +328,9 @@ def process(inputDirectory, inputName=None, status=0, clientAgent='manual', down
result = -1
if result == 0:
# update download status in our DB
update_downloadInfoStatus(inputName, 1)
if clientAgent != 'manual':
# update download status in our DB
update_downloadInfoStatus(inputName, 1)
# cleanup our processing folders of any misc unwanted files and empty directories
cleanProcDirs()