[cleanup] Fix invalid info dict fields (#17007)

Authored by: seproDev
This commit is contained in:
sepro
2026-06-21 22:48:47 +00:00
committed by GitHub
parent da99b21b2d
commit 98036ccd4f
21 changed files with 52 additions and 43 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ def _extract_episode(data, episode_id=None):
return {
'id': str(episode_id or data['episode_id']),
'url': download_url,
'display_id': data.get('permalink'),
'display_id': str_or_none(data.get('permalink')),
'title': title,
'description': data.get('description'),
'timestamp': unified_timestamp(data.get('published_at')),