From 431976296f6b2cddb244cc30c19709747be08239 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 3 Dec 2023 00:48:02 +0100 Subject: [PATCH] Fix typo --- vrobbler/apps/videogames/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/videogames/models.py b/vrobbler/apps/videogames/models.py index 5de53aa..c135818 100644 --- a/vrobbler/apps/videogames/models.py +++ b/vrobbler/apps/videogames/models.py @@ -114,7 +114,7 @@ class VideoGame(LongPlayScrobblableMixin): summary = models.TextField(**BNULL) hltb_cover = models.ImageField(upload_to="games/hltb_covers/", **BNULL) hltb_cover_small = ImageSpecField( - source="htlb_cover", + source="hltb_cover", processors=[ResizeToFit(100, 100)], format="JPEG", options={"quality": 60},