aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/callin.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/callin.py')
-rw-r--r--hypervideo_dl/extractor/callin.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/hypervideo_dl/extractor/callin.py b/hypervideo_dl/extractor/callin.py
index 1f3b7cf..e966876 100644
--- a/hypervideo_dl/extractor/callin.py
+++ b/hypervideo_dl/extractor/callin.py
@@ -1,4 +1,3 @@
-# coding: utf-8
from .common import InfoExtractor
from ..utils import (
traverse_obj,
@@ -52,12 +51,9 @@ class CallinIE(InfoExtractor):
episode = next_data['props']['pageProps']['episode']
id = episode['id']
- title = (episode.get('title')
- or self._og_search_title(webpage, fatal=False)
- or self._html_extract_title(webpage))
+ title = episode.get('title') or self._generic_title('', webpage)
url = episode['m3u8']
formats = self._extract_m3u8_formats(url, display_id, ext='ts')
- self._sort_formats(formats)
show = traverse_obj(episode, ('show', 'title'))
show_id = traverse_obj(episode, ('show', 'id'))