simple changelog
This commit is contained in:
parent
04f994d4b7
commit
e966256fa2
15 changed files with 267 additions and 103 deletions
|
|
@ -55,8 +55,11 @@ class Downloads(Thread):
|
|||
del self.transfers[itemid]
|
||||
continue
|
||||
if t.get('added') and t.get('progress', -1) < 1:
|
||||
if not 'users' in t:
|
||||
if 'users' not in t:
|
||||
i = item.models.Item.get(itemid)
|
||||
if not i:
|
||||
del self.transfers[itemid]
|
||||
continue
|
||||
t['users'] = [u.id for u in i.users]
|
||||
for uid in t['users']:
|
||||
if state.shutdown:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue