Browse Source

Append instead of add for subtitle file list

pull/1793/merge
Ruud 12 years ago
parent
commit
b3ba4db00b
  1. 2
      couchpotato/core/plugins/subtitle/main.py

2
couchpotato/core/plugins/subtitle/main.py

@ -59,7 +59,7 @@ class Subtitle(Plugin):
for d_sub in downloaded:
log.info('Found subtitle (%s): %s', (d_sub.language.alpha2, files))
group['files']['subtitle'].add(d_sub.path)
group['files']['subtitle'].append(d_sub.path)
group['subtitle_language'][d_sub.path] = [d_sub.language.alpha2]
return True

Loading…
Cancel
Save