diff options
Diffstat (limited to 'searx/engines/podcastindex.py')
| -rw-r--r-- | searx/engines/podcastindex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/podcastindex.py b/searx/engines/podcastindex.py index d0aa85fb8..9e04a6f78 100644 --- a/searx/engines/podcastindex.py +++ b/searx/engines/podcastindex.py @@ -34,7 +34,7 @@ def response(resp): 'title': result['title'], 'content': result['description'], 'thumbnail': result['image'], - 'publishedDate': datetime.utcfromtimestamp(result['newestItemPubdate']), + 'publishedDate': datetime.fromtimestamp(result['newestItemPubdate']), 'metadata': f"{result['author']}, {result['episodeCount']} episodes", } ) |