aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/extractor/cpac.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/cpac.py')
-rw-r--r--yt_dlp/extractor/cpac.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/cpac.py b/yt_dlp/extractor/cpac.py
index 0f23f2be2..32bba1e5a 100644
--- a/yt_dlp/extractor/cpac.py
+++ b/yt_dlp/extractor/cpac.py
@@ -65,7 +65,7 @@ class CPACIE(InfoExtractor):
'title': title,
'description': str_or_none(content['details'].get('description_%s_t' % (url_lang, ))),
'timestamp': unified_timestamp(content['details'].get('liveDateTime')),
- 'category': [category] if category else None,
+ 'categories': [category] if category else None,
'thumbnail': urljoin(url, str_or_none(content['details'].get('image_%s_s' % (url_lang, )))),
'is_live': is_live(content['details'].get('type')),
}