From 5b6bb5ac3d1152d402cbd910f7efff0438e2ae0f Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Tue, 5 May 2026 21:03:52 +0100 Subject: [PATCH] [presto] Use micro cover to keep things snappy --- presto/records_on_the_day.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/presto/records_on_the_day.py b/presto/records_on_the_day.py index b558e74d..788c565d 100644 --- a/presto/records_on_the_day.py +++ b/presto/records_on_the_day.py @@ -1016,7 +1016,11 @@ def _record_thumbnail_data(rec): if cached is not None: return cached - thumb_url = rec.get("mini_cover_url", "") or rec.get("thumb_url", "") + thumb_url = ( + rec.get("micro_cover_url", "") + or rec.get("mini_cover_url", "") + or rec.get("thumb_url", "") + ) if not thumb_url: return None