From c43eb6453982a0336279dc4c6c3d2e61ee67fbe3 Mon Sep 17 00:00:00 2001 From: David Hood <30076632+davidphood@users.noreply.github.com> Date: Fri, 26 Apr 2019 00:30:51 +1000 Subject: [PATCH] Fixed title to use 'seriesTitle' instead of incorrectly using 'seriesDescription' --- youtube_dl/extractor/abc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/abc.py b/youtube_dl/extractor/abc.py index f5f5f7bea..22bb4ba8e 100644 --- a/youtube_dl/extractor/abc.py +++ b/youtube_dl/extractor/abc.py @@ -263,7 +263,7 @@ class ABCIViewShowIE(ABCIViewIE): show_data = self._download_json( 'https://iview.abc.net.au/api/series/' + show_id, show_id) - title = show_data.get('seriesDescription') or show_id + title = show_data.get('seriesTitle') or show_id description = show_data.get('seriesDescription') # Sometimes the episodes are listed in reverse order, with the most recently uploaded ones first.