diff options
author | mkaay <mkaay@mkaay.de> | 2009-12-28 15:32:06 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2009-12-28 15:32:06 +0100 |
commit | ce2a8294b5aefe4497c88f24c817084868b8b1eb (patch) | |
tree | cf52569c6f52a12a4a2c5d5a6358aea797697ec5 /module/file_list.py | |
parent | DLC Error Log (diff) | |
download | pyload-ce2a8294b5aefe4497c88f24c817084868b8b1eb.tar.xz |
gui now stable
Diffstat (limited to 'module/file_list.py')
-rw-r--r-- | module/file_list.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/module/file_list.py b/module/file_list.py index d80310cdd..21e084483 100644 --- a/module/file_list.py +++ b/module/file_list.py @@ -127,8 +127,14 @@ class File_List(object): for thread_list only """ files = [] + for pypack in self.data["queue"] + self.data["packages"]: + for pyfile in pypack.files: + if pyfile.plugin.props['type'] == "container" and not pyfile.active: + files.append(pyfile) for pypack in self.data["queue"]: for pyfile in pypack.files: + if pyfile in files: + continue if (pyfile.status.type == "reconnected" or pyfile.status.type == None) and not pyfile.active: files.append(pyfile) return files |