[presto] Use micro cover to keep things snappy

This commit is contained in:
Claudio Ortolina
2026-05-05 21:03:52 +01:00
parent 0a9fafd35e
commit 5b6bb5ac3d
+5 -1
View File
@@ -1016,7 +1016,11 @@ def _record_thumbnail_data(rec):
if cached is not None: if cached is not None:
return cached 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: if not thumb_url:
return None return None