Add all locations to m3u8 playlists

This commit is contained in:
JonnyWong16 2020-10-16 11:47:44 -07:00
commit 8a953e789c
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -1936,7 +1936,7 @@ class Export(object):
'ratingKey': d['ratingKey'], 'ratingKey': d['ratingKey'],
'duration': d['duration'], 'duration': d['duration'],
'title': full_title, 'title': full_title,
'location': d['locations'][0] # Only first file if multiple files 'location': '\n'.join(d['locations']) # Add all locations
} }
items.append(metadata) items.append(metadata)