From 8a953e789cf524e9b8c5b3de5b75fe9ea1ecb432 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Fri, 16 Oct 2020 11:47:44 -0700 Subject: [PATCH] Add all locations to m3u8 playlists --- plexpy/exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/exporter.py b/plexpy/exporter.py index 3e4fc909..e0d25e71 100644 --- a/plexpy/exporter.py +++ b/plexpy/exporter.py @@ -1936,7 +1936,7 @@ class Export(object): 'ratingKey': d['ratingKey'], 'duration': d['duration'], 'title': full_title, - 'location': d['locations'][0] # Only first file if multiple files + 'location': '\n'.join(d['locations']) # Add all locations } items.append(metadata)