Append instead of add for subtitle file list

This commit is contained in:
Ruud
2013-05-29 19:30:40 +02:00
parent ec19932eef
commit 9db1f3430e
+1 -1
View File
@@ -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